- Timestamp:
- 10/06/20 13:12:20 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
references/src/main/java/geniusweb/connection/DefaultConnection.java
r9 r24 6 6 * Default implementation of connection. Connection implementors only need to 7 7 * implement the send (which moves the data sent into the connection to the 8 * other side) and they can call {@link DefaultListenable#notifyChange(Object)}9 * to inform the users of the connection that something came in from the other10 * side.8 * other side) and they can call 9 * {@link DefaultListenable#notifyListeners(Object)} to inform the users of the 10 * connection that something came in from the other side. 11 11 * 12 * @param <INTYPE>the datatype of objects received from the other side13 * @param <OUTTYPE>the datatype of objects sent to the other side.12 * @param INTYPE the datatype of objects received from the other side 13 * @param OUTTYPE the datatype of objects sent to the other side. 14 14 */ 15 15 public abstract class DefaultConnection<INTYPE, OUTTYPE> extends
Note:
See TracChangeset
for help on using the changeset viewer.