- Timestamp:
- 11/28/19 14:40:48 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
references/src/main/java/geniusweb/connection/Connectable.java
r1 r9 2 2 3 3 /** 4 * a socket for a general two-way connection 4 * A Connectable is an object that can connect on request with a provided 5 * {@link ConnectionEnd} and then respond to incoming and outgong signals. 5 6 * 6 * @param <INTYPE> the type of incoming messages7 * @param <INTYPE> the type of incoming messages 7 8 * @param <OUTTYPE> the type of outgoing messages 8 9 */ … … 13 14 * @param connection the new connection 14 15 */ 15 void connect(Connection <INTYPE, OUTTYPE> connection);16 void connect(ConnectionEnd<INTYPE, OUTTYPE> connection); 16 17 17 18 /**
Note:
See TracChangeset
for help on using the changeset viewer.