Search in sources :

Example 1 with Client

use of org.eclipse.ecf.provider.comm.tcp.Client in project ecf by eclipse.

the class TCPClientSOContainer method createConnection.

/**
 * @param remoteSpace remote space
 * @param data and data
 * @return ISynchAsynchConnection a non-<code>null</code> instance.
 * @throws ConnectionCreateException not thrown by this implementation.
 */
protected ISynchAsynchConnection createConnection(ID remoteSpace, Object data) throws ConnectionCreateException {
    // $NON-NLS-1$ //$NON-NLS-2$
    debug("createClientConnection:" + remoteSpace + ":" + data);
    ISynchAsynchConnection conn = new Client(receiver, keepAlive);
    return conn;
}
Also used : ISynchAsynchConnection(org.eclipse.ecf.provider.comm.ISynchAsynchConnection) Client(org.eclipse.ecf.provider.comm.tcp.Client)

Aggregations

ISynchAsynchConnection (org.eclipse.ecf.provider.comm.ISynchAsynchConnection)1 Client (org.eclipse.ecf.provider.comm.tcp.Client)1