source: protocol/src/main/java/geniusweb/protocol/partyconnection/ConnectionWithParty.java@ 1

Last change on this file since 1 was 1, checked in by bart, 5 years ago

Initial Release

File size: 503 bytes
Line 
1package geniusweb.protocol.partyconnection;
2
3import geniusweb.actions.Action;
4import geniusweb.actions.PartyId;
5import geniusweb.connection.Connection;
6import geniusweb.party.inform.Inform;
7
8/**
9 * Connection of the protocol with a party. Note, this is the opposite direction
10 * of a connection of the party with the protocol.
11 */
12public interface ConnectionWithParty extends Connection<Action, Inform> {
13
14 /**
15 *
16 * @return the partyId of the party that this connects to
17 */
18 PartyId getParty();
19}
Note: See TracBrowser for help on using the repository browser.