Search in sources :

Example 1 with SslChannelService

use of org.webpieces.nio.impl.ssl.SslChannelService in project webpieces by deanhiller.

the class BasChanSvcFactory method createMultiThreadedChanMgr.

@Override
public ChannelManager createMultiThreadedChanMgr(String threadName, BufferPool pool, Executor executor) {
    ChannelManager mgr = createSingleThreadedChanMgr(threadName, pool);
    ThreadedChannelService mgr2 = new ThreadedChannelService(mgr, executor);
    return new SslChannelService(mgr2, pool);
}
Also used : SslChannelService(org.webpieces.nio.impl.ssl.SslChannelService) ChannelManager(org.webpieces.nio.api.ChannelManager) ThreadedChannelService(org.webpieces.nio.impl.threading.ThreadedChannelService)

Aggregations

ChannelManager (org.webpieces.nio.api.ChannelManager)1 SslChannelService (org.webpieces.nio.impl.ssl.SslChannelService)1 ThreadedChannelService (org.webpieces.nio.impl.threading.ThreadedChannelService)1