Uses of Interface
net.sf.cindy.Session

Packages that use Session
net.sf.cindy   
net.sf.cindy.decoder   
net.sf.cindy.encoder   
net.sf.cindy.filter   
net.sf.cindy.session   
net.sf.cindy.session.bio   
net.sf.cindy.session.dispatcher   
net.sf.cindy.session.jmx   
net.sf.cindy.session.nio   
net.sf.cindy.session.nio.reactor   
 

Uses of Session in net.sf.cindy
 

Methods in net.sf.cindy that return Session
 Session SessionFilterChain.getSession()
          Get session associated with the session filter chain.
 Session Future.getSession()
          Get session associated with the future.
 

Methods in net.sf.cindy with parameters of type Session
 java.lang.Object PacketDecoder.decode(Session session, Packet packet)
          Decode packet to object.
 Packet PacketEncoder.encode(Session session, java.lang.Object obj)
          Encode object to packet.
 void SessionHandlerAdapter.exceptionCaught(Session session, java.lang.Throwable cause)
           
 void SessionHandler.exceptionCaught(Session session, java.lang.Throwable cause)
          Session caught a exception.
 void SessionHandlerAdapter.objectReceived(Session session, java.lang.Object obj)
           
 void SessionHandler.objectReceived(Session session, java.lang.Object obj)
          Session received a object which is decoded by PacketDecoder.
 void SessionHandlerAdapter.objectSent(Session session, java.lang.Object obj)
           
 void SessionHandler.objectSent(Session session, java.lang.Object obj)
          Session sent a object.
 void SessionAcceptorHandlerAdapter.sessionAccepted(SessionAcceptor acceptor, Session session)
           
 void SessionAcceptorHandler.sessionAccepted(SessionAcceptor acceptor, Session session)
          Acceptor accepted an incoming session.
 void SessionHandlerAdapter.sessionClosed(Session session)
           
 void SessionHandler.sessionClosed(Session session)
          Session have closed.
 void SessionHandlerAdapter.sessionStarted(Session session)
           
 void SessionHandler.sessionStarted(Session session)
          Session have started.
 void SessionHandlerAdapter.sessionTimeout(Session session)
           
 void SessionHandler.sessionTimeout(Session session)
          Session timeout, but not closed.
 

Uses of Session in net.sf.cindy.decoder
 

Methods in net.sf.cindy.decoder with parameters of type Session
 java.lang.Object SimplePacketDecoder.decode(Session session, Packet packet)
           
 java.lang.Object SerialDecoder.decode(Session session, Packet packet)
           
 java.lang.Object PacketDecoderChain.decode(Session session, Packet packet)
           
 java.lang.Object ByteBufferDecoder.decode(Session session, Packet packet)
           
 java.lang.Object ByteArrayDecoder.decode(Session session, Packet packet)
           
 java.lang.Object BufferDecoder.decode(Session session, Packet packet)
           
 

Uses of Session in net.sf.cindy.encoder
 

Methods in net.sf.cindy.encoder with parameters of type Session
 Packet SimplePacketEncoder.encode(Session session, java.lang.Object obj)
           
 Packet SerialEncoder.encode(Session session, java.lang.Object obj)
           
 Packet PacketEncoderChain.encode(Session session, java.lang.Object obj)
           
 Packet ByteBufferEncoder.encode(Session session, java.lang.Object obj)
           
 Packet ByteArrayEncoder.encode(Session session, java.lang.Object obj)
           
 Packet BufferEncoder.encode(Session session, java.lang.Object obj)
           
 

Uses of Session in net.sf.cindy.filter
 

Fields in net.sf.cindy.filter declared as Session
protected  Session PacketDecoderFilter.session
           
 

Methods in net.sf.cindy.filter with parameters of type Session
static PacketDecoderFilter PacketDecoderFilter.getInstance(Session session)
           
 

Constructors in net.sf.cindy.filter with parameters of type Session
PacketDecoderFilter(Session session)
           
StatisticFilter(Session session)
          Construct a statistic filter monitor special session.
 

Uses of Session in net.sf.cindy.session
 

Classes in net.sf.cindy.session that implement Session
 class AbstractSession
          Abstract session.
 

Methods in net.sf.cindy.session that return Session
static Session SessionFactory.createDatagramSession()
          Deprecated. use createSession(SessionType.UDP) instead.
static Session SessionFactory.createSession(SessionType type)
          Create a new session.
static Session SessionFactory.createSocketSession()
          Deprecated. use createSession(SessionType.TCP) instead.
 Session DefaultFuture.getSession()
           
 

Methods in net.sf.cindy.session with parameters of type Session
protected  void AbstractSessionAcceptor.sessionAccepted(Session session)
           
 

Constructors in net.sf.cindy.session with parameters of type Session
DefaultFuture(Session session)
           
DefaultFuture(Session session, boolean succeeded)
           
 

Uses of Session in net.sf.cindy.session.bio
 

Methods in net.sf.cindy.session.bio that return Session
protected  Session BlockingSessionAcceptor.newSession(java.nio.channels.SocketChannel sc)
           
 

Uses of Session in net.sf.cindy.session.dispatcher
 

Methods in net.sf.cindy.session.dispatcher with parameters of type Session
 void Dispatcher.dispatch(Session session, java.lang.Runnable event)
          Dispatch event.
 void DirectDispatcher.dispatch(Session session, java.lang.Runnable event)
           
 void DefaultDispatcher.dispatch(Session session, java.lang.Runnable event)
           
 

Uses of Session in net.sf.cindy.session.jmx
 

Constructors in net.sf.cindy.session.jmx with parameters of type Session
JmxSession(Session session)
           
 

Uses of Session in net.sf.cindy.session.nio
 

Classes in net.sf.cindy.session.nio that implement Session
 class AbstractChannelSession
          Abstract selectable channel session.
 class DatagramChannelSession
          Datagram channel session.
 class PipeSession
          Pipe session.
 class ServerSocketChannelSession
          Server socket channel session.
 class SocketChannelSession
          Socket channel session.
 

Methods in net.sf.cindy.session.nio that return Session
 Session AbstractChannelSession.ChannelReactorHandler.getSession()
           
 

Uses of Session in net.sf.cindy.session.nio.reactor
 

Methods in net.sf.cindy.session.nio.reactor that return Session
 Session ReactorHandler.getSession()