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.filter.traffic IoFilter's which will provide functionality for shaping the traffic and preventing data flooding. 
org.apache.mina.integration.jmx JMX (Java Management eXtension) integration. 
org.apache.mina.transport.socket   
org.apache.mina.transport.socket.apr   
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.
 

Classes in org.apache.mina.common that implement IoService
 class AbstractIoAcceptor
          A base implementation of IoAcceptor.
 class AbstractIoConnector
          A base implementation of IoConnector.
 class AbstractIoService
          Base implementation of IoServices.
 class AbstractPollingConnectionlessIoAcceptor<T extends AbstractIoSession,H>
          IoAcceptor for datagram transport (UDP/IP).
 class AbstractPollingIoAcceptor<T extends AbstractIoSession,H>
           
 class AbstractPollingIoConnector<T extends AbstractIoSession,H>
           
 

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

Methods in org.apache.mina.common with parameters of type IoService
static void IdleStatusChecker.notifyIdleness(IoService service, long currentTime)
           
 void IoServiceListener.serviceActivated(IoService service)
          Invoked when a new service is activated by an IoService.
 void IoServiceListener.serviceDeactivated(IoService service)
          Invoked when a service is deactivated by an IoService.
 void IoServiceListener.serviceIdle(IoService service, IdleStatus idleStatus)
          Invoked when a service is idle.
 void DummySession.setService(IoService service)
          Sets the IoService which provides I/O service to this session.
 

Constructors in org.apache.mina.common with parameters of type IoService
IoServiceListenerSupport(IoService service)
          Creates a new instance.
 

Uses of IoService in org.apache.mina.filter.traffic
 

Methods in org.apache.mina.filter.traffic with parameters of type IoService
static int ReadThrottleFilter.getServiceBufferSize(IoService service)
           
 

Uses of IoService in org.apache.mina.integration.jmx
 

Constructors in org.apache.mina.integration.jmx with parameters of type IoService
IoServiceMBean(IoService source)
           
 

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

Subinterfaces of IoService in org.apache.mina.transport.socket
 interface DatagramAcceptor
          IoAcceptor for datagram transport (UDP/IP).
 interface DatagramConnector
          IoConnector for datagram transport (UDP/IP).
 interface DatagramService
          IoService for datagram transport (UDP/IP).
 interface SocketAcceptor
          IoAcceptor for socket transport (TCP/IP).
 interface SocketConnector
          IoConnector for socket transport (TCP/IP).
 interface SocketService
          IoService for socket transport (TCP/IP).
 

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

Classes in org.apache.mina.transport.socket.apr that implement IoService
 class AprSocketAcceptor
           
 class AprSocketConnector
           
 

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

Classes in org.apache.mina.transport.socket.nio that implement IoService
 class NioDatagramAcceptor
          IoAcceptor for datagram transport (UDP/IP).
 class NioDatagramConnector
          IoConnector for datagram transport (UDP/IP).
 class NioSocketAcceptor
          IoAcceptor for socket transport (TCP/IP).
 class NioSocketConnector
          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.
 



Copyright © 2004-2009 Apache MINA Project. All Rights Reserved.