Uses of Class
org.apache.mina.core.session.AbstractIoSession
-
Packages that use AbstractIoSession Package Description 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.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 AbstractIoSession in org.apache.mina.core.filterchain
Constructors in org.apache.mina.core.filterchain with parameters of type AbstractIoSession Constructor Description DefaultIoFilterChain(AbstractIoSession session)Create a new default chain, associated with a session. -
Uses of AbstractIoSession in org.apache.mina.core.polling
Classes in org.apache.mina.core.polling with type parameters of type AbstractIoSession Modifier and Type Class Description classAbstractPollingIoAcceptor<S extends AbstractIoSession,H>A base class for implementing transport using a polling strategy.classAbstractPollingIoConnector<S extends AbstractIoSession,H>A base class for implementing client transport using a polling strategy.classAbstractPollingIoProcessor<S extends AbstractIoSession>An abstract implementation ofIoProcessorwhich helps transport developers to write anIoProcessoreasily. -
Uses of AbstractIoSession in org.apache.mina.core.service
Classes in org.apache.mina.core.service with type parameters of type AbstractIoSession Modifier and Type Class Description classSimpleIoProcessorPool<S extends AbstractIoSession> -
Uses of AbstractIoSession in org.apache.mina.core.session
Subclasses of AbstractIoSession in org.apache.mina.core.session Modifier and Type Class Description classDummySessionMethods in org.apache.mina.core.session with parameters of type AbstractIoSession Modifier and Type Method Description voidIdleStatusChecker. addSession(AbstractIoSession session)Add the session for being checked for idle. -
Uses of AbstractIoSession in org.apache.mina.filter.codec
Subclasses of AbstractIoSession in org.apache.mina.filter.codec Modifier and Type Class Description classProtocolCodecSession -
Uses of AbstractIoSession in org.apache.mina.transport.socket.nio
Subclasses of AbstractIoSession in org.apache.mina.transport.socket.nio Modifier and Type Class Description (package private) classNioDatagramSessionAnIoSessionfor datagram transport (UDP/IP).classNioSessionAnIoSessionwhich is managed by the NIO transport.(package private) classNioSocketSessionAnIoSessionfor socket transport (TCP/IP). -
Uses of AbstractIoSession in org.apache.mina.transport.vmpipe
Subclasses of AbstractIoSession in org.apache.mina.transport.vmpipe Modifier and Type Class Description (package private) classVmPipeSessionAIoSessionfor in-VM transport (VM_PIPE).Constructors in org.apache.mina.transport.vmpipe with parameters of type AbstractIoSession Constructor Description VmPipeFilterChain(AbstractIoSession session)
-