Changeset 9 for references


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

Release 1.1.0

Location:
references
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • references/pom.xml

    r6 r9  
    66        <groupId>geniusweb</groupId>
    77        <artifactId>references</artifactId>
    8         <version>1.0.0</version>
     8        <version>1.1.0</version>
    99        <packaging>jar</packaging>
    1010
     
    1616                <basedir>.</basedir>
    1717                <passwd>${env.ARTIFACTORY_PASS}</passwd>
    18                 <jackson-2-version>2.9.6</jackson-2-version>
     18                <jackson-2-version>2.9.10</jackson-2-version>
    1919        </properties>
    2020
     
    3131                        <groupId>tudelft.utilities</groupId>
    3232                        <artifactId>listener</artifactId>
    33                         <version>1.0.0</version>
     33                        <version>1.1.0</version>
    3434                </dependency>
    3535
  • 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        /**
  • references/src/main/java/geniusweb/connection/ConnectionFactory.java

    r1 r9  
    99 * factory that can turn a {@link Reference} into a connection to that
    1010 * reference.
     11 *
    1112 *
    1213 * @param <INTYPE>  the type of incoming messages. Incoming messages are
     
    3031         *                                 the server. This suggest to retry later.
    3132         */
    32         Connection<INTYPE, OUTTYPE> connect(Reference reference)
     33        ConnectionEnd<INTYPE, OUTTYPE> connect(Reference reference)
    3334                        throws IOException, NoResourcesNowException;
    3435
  • references/src/main/java/geniusweb/connection/DefaultConnection.java

    r1 r9  
    1414 */
    1515public abstract class DefaultConnection<INTYPE, OUTTYPE> extends
    16                 DefaultListenable<INTYPE> implements Connection<INTYPE, OUTTYPE> {
     16                DefaultListenable<INTYPE> implements ConnectionEnd<INTYPE, OUTTYPE> {
    1717}
Note: See TracChangeset for help on using the changeset viewer.