Search in sources :

Example 1 with SSLClient

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

the class SSLClientSOContainer method createConnection.

/**
 * @param remoteSpace remote space
 * @param data 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 SSLClient(receiver, keepAlive);
    return conn;
}
Also used : SSLClient(org.eclipse.ecf.provider.comm.tcp.SSLClient) ISynchAsynchConnection(org.eclipse.ecf.provider.comm.ISynchAsynchConnection)

Aggregations

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