Ignore:
Timestamp:
11/28/19 14:40:48 (5 years ago)
Author:
bart
Message:

Release 1.1.0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • references/src/main/java/geniusweb/connection/Connectable.java

    r1 r9  
    22
    33/**
    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.
    56 *
    6  * @param <INTYPE> the type of incoming messages
     7 * @param <INTYPE>  the type of incoming messages
    78 * @param <OUTTYPE> the type of outgoing messages
    89 */
     
    1314         * @param connection the new connection
    1415         */
    15         void connect(Connection<INTYPE, OUTTYPE> connection);
     16        void connect(ConnectionEnd<INTYPE, OUTTYPE> connection);
    1617
    1718        /**
Note: See TracChangeset for help on using the changeset viewer.