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;
}
Aggregations