Uses of Interface
org.apache.mina.common.IoService

Packages that use IoService
org.apache.mina.common Common types required for users to use MINA. 
org.apache.mina.common.support Internal classes used by org.apache.mina.common package. 
org.apache.mina.transport.socket.nio Socket (TCP/IP) and Datagram (UDP/IP) support based on Java NIO (New I/O) API
org.apache.mina.transport.vmpipe In-VM pipe support which removes the overhead of local loopback communication. 
 

Uses of IoService in org.apache.mina.common
 

Subinterfaces of IoService in org.apache.mina.common
 interface IoAcceptor
          Accepts incoming connection, communicates with clients, and fires events to IoHandlers.
 interface IoConnector
          Connects to endpoint, communicates with the server, and fires events to IoHandlers.
 

Methods in org.apache.mina.common that return IoService
 IoService IoSession.getService()
          Returns the IoService which provides I/O service to this session.
 

Uses of IoService in org.apache.mina.common.support
 

Classes in org.apache.mina.common.support that implement IoService
 class org.apache.mina.common.support.BaseIoAcceptor
          A base implementation of IoAcceptor.
 class org.apache.mina.common.support.BaseIoConnector
          A base implementation of IoConnector.
 class org.apache.mina.common.support.BaseIoService
          Base implementation of IoServices.
 class org.apache.mina.common.support.DelegatedIoAcceptor
          A delegated IoAcceptor that wraps the other IoAcceptor.
 class org.apache.mina.common.support.DelegatedIoConnector
          A delegated IoConnector that wraps the other IoConnector.
 

Uses of IoService in org.apache.mina.transport.socket.nio
 

Classes in org.apache.mina.transport.socket.nio that implement IoService
 class DatagramAcceptor
          IoAcceptor for datagram transport (UDP/IP).
 class DatagramConnector
          IoConnector for datagram transport (UDP/IP).
 class SocketAcceptor
          IoAcceptor for socket transport (TCP/IP).
 class SocketConnector
          IoConnector for socket transport (TCP/IP).
 

Uses of IoService in org.apache.mina.transport.vmpipe
 

Classes in org.apache.mina.transport.vmpipe that implement IoService
 class VmPipeAcceptor
          Binds the specified IoHandler to the specified VmPipeAddress.
 class VmPipeConnector
          Connects to IoHandlers which is bound on the specified VmPipeAddress.