use of org.webpieces.nio.impl.threading.ThreadedChannelService 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);
}
Aggregations