Uses of Class
org.apache.mina.core.session.AbstractIoSession

Packages that use AbstractIoSession
org.apache.mina.core.filterchain   
org.apache.mina.core.polling Base class for implementing transport based on active polling strategies like NIO select call, or any API based on I/O polling system calls (epoll, poll, select, kqueue, etc). 
org.apache.mina.core.service   
org.apache.mina.core.session   
org.apache.mina.filter.codec Filter implementations that helps you to implement complex protocols via 'codec' concept. 
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
 

Uses of AbstractIoSession in org.apache.mina.core.filterchain
 

Constructors in org.apache.mina.core.filterchain with parameters of type AbstractIoSession
DefaultIoFilterChain(AbstractIoSession session)
           
 

Uses of AbstractIoSession in org.apache.mina.core.polling
 

Classes in org.apache.mina.core.polling with type parameters of type AbstractIoSession
 class AbstractPollingConnectionlessIoAcceptor<T extends AbstractIoSession,H>
          TODO Add documentation IoAcceptor for datagram transport (UDP/IP).
 class AbstractPollingIoAcceptor<T extends AbstractIoSession,H>
          A base class for implementing transport using a polling strategy.
 class AbstractPollingIoConnector<T extends AbstractIoSession,H>
          A base class for implementing client transport using a polling strategy.
 class AbstractPollingIoProcessor<T extends AbstractIoSession>
          An abstract implementation of IoProcessor which helps transport developers to write an IoProcessor easily.
 

Uses of AbstractIoSession in org.apache.mina.core.service
 

Classes in org.apache.mina.core.service with type parameters of type AbstractIoSession
 class SimpleIoProcessorPool<T extends AbstractIoSession>
          An IoProcessor pool that distributes IoSessions into one or more IoProcessors.
 

Uses of AbstractIoSession in org.apache.mina.core.session
 

Subclasses of AbstractIoSession in org.apache.mina.core.session
 class DummySession
          A dummy IoSession for unit-testing or non-network-use of the classes that depends on IoSession.
 

Methods in org.apache.mina.core.session with parameters of type AbstractIoSession
 void IdleStatusChecker.addSession(AbstractIoSession session)
           
 void IdleStatusChecker.removeSession(AbstractIoSession session)
           
 

Uses of AbstractIoSession in org.apache.mina.filter.codec
 

Subclasses of AbstractIoSession in org.apache.mina.filter.codec
 class ProtocolCodecSession
          A virtual IoSession that provides ProtocolEncoderOutput and ProtocolDecoderOutput.
 

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

Subclasses of AbstractIoSession in org.apache.mina.transport.socket.apr
 class AprSession
          An abstract IoSession serving of base for APR based sessions.
 

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

Subclasses of AbstractIoSession in org.apache.mina.transport.socket.nio
 class NioSession
          An IoSession which is managed by the NIO transport.
 



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