Uses of Class
org.apache.mina.core.session.SessionState
-
Packages that use SessionState Package Description 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.session 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 SessionState in org.apache.mina.core.polling
Methods in org.apache.mina.core.polling that return SessionState Modifier and Type Method Description protected abstract SessionState
AbstractPollingIoProcessor. getState(S session)
Get the state of a session (One of OPENING, OPEN, CLOSING) -
Uses of SessionState in org.apache.mina.core.session
Methods in org.apache.mina.core.session that return SessionState Modifier and Type Method Description static SessionState
SessionState. valueOf(String name)
Returns the enum constant of this type with the specified name.static SessionState[]
SessionState. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of SessionState in org.apache.mina.transport.socket.apr
Methods in org.apache.mina.transport.socket.apr that return SessionState Modifier and Type Method Description protected SessionState
AprIoProcessor. getState(AprSession session)
Get the state of a session (One of OPENING, OPEN, CLOSING) -
Uses of SessionState in org.apache.mina.transport.socket.nio
Methods in org.apache.mina.transport.socket.nio that return SessionState Modifier and Type Method Description protected SessionState
NioProcessor. getState(NioSession session)
Get the state of a session (One of OPENING, OPEN, CLOSING)
-