Uses of Interface
net.sf.jbaobab.io.Manager

Packages that use Manager
net.sf.jbaobab.io Contains core interfaces and implementations of JBaobab framework. 
 

Uses of Manager in net.sf.jbaobab.io
 

Subinterfaces of Manager in net.sf.jbaobab.io
 interface ChannelManager<C extends SelectableChannel>
           A Manager interface that manages SelectableChannel with ChannelHandler.
 interface SocketPool
           An Manager that accepts incoming connections and provides SocketPreparer interface.
 

Classes in net.sf.jbaobab.io that implement Manager
 class AbstractManager<C extends SelectableChannel,T>
           An abstract base implementation of Manager interface.
 class ChannelReceiver<C extends SelectableChannel>
           A ChannelManager that manages SelectionKey.OP_READ events.
 class ChannelSender<C extends SelectableChannel & ByteChannel>
           A ChannelManager that manages SelectionKey.OP_WRITE events.
 class ThreadedSocketPool
           A SocketPool that creates SocketHandler instance on root executor (obtained with ExecutorPool.getRootExecutor()).
 class ThreadedSocketPreparer
           A SocketPreparer that creates SocketHandler instance on root executor (obtained with ExecutorPool.getRootExecutor()).