Uses of Interface
net.sf.cindy.Packet

Packages that use Packet
net.sf.cindy   
net.sf.cindy.decoder   
net.sf.cindy.encoder   
net.sf.cindy.filter   
net.sf.cindy.packet   
net.sf.cindy.session   
net.sf.cindy.session.nio   
 

Uses of Packet in net.sf.cindy
 

Methods in net.sf.cindy that return Packet
 Packet PacketEncoder.encode(Session session, java.lang.Object obj)
          Encode object to packet.
 

Methods in net.sf.cindy with parameters of type Packet
 java.lang.Object PacketDecoder.decode(Session session, Packet packet)
          Decode packet to object.
 Future Session.flush(Packet packet)
          Send packet with normal priority.
 Future Session.flush(Packet packet, int priority)
          Send packet with specified priority.
 void SessionFilterChain.packetReceived(Packet packet)
          Session received a packet.
 void SessionFilterAdapter.packetReceived(SessionFilterChain filterChain, Packet packet)
           
 void SessionFilter.packetReceived(SessionFilterChain filterChain, Packet packet)
          Session received a packet.
 void SessionFilterChain.packetSend(Packet packet)
          Filter before send packet.
 void SessionFilterAdapter.packetSend(SessionFilterChain filterChain, Packet packet)
           
 void SessionFilter.packetSend(SessionFilterChain filterChain, Packet packet)
          Filter before send packet.
 void SessionFilterChain.packetSent(Packet packet)
          Session sent a packet.
 void SessionFilterAdapter.packetSent(SessionFilterChain filterChain, Packet packet)
           
 void SessionFilter.packetSent(SessionFilterChain filterChain, Packet packet)
          Session sent a packet.
 

Uses of Packet in net.sf.cindy.decoder
 

Methods in net.sf.cindy.decoder with parameters of type Packet
 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 Packet in net.sf.cindy.encoder
 

Methods in net.sf.cindy.encoder that return Packet
 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 Packet in net.sf.cindy.filter
 

Methods in net.sf.cindy.filter with parameters of type Packet
 void StatisticFilter.packetReceived(SessionFilterChain filterChain, Packet packet)
           
 void SSLFilter.packetReceived(SessionFilterChain filterChain, Packet packet)
           
 void NullFilter.packetReceived(SessionFilterChain filterChain, Packet packet)
           
 void LogFilter.packetReceived(SessionFilterChain filterChain, Packet packet)
           
 void DispatcherFilter.packetReceived(SessionFilterChain filterChain, Packet packet)
           
 void SSLFilter.packetSend(SessionFilterChain filterChain, Packet packet)
           
 void NullFilter.packetSend(SessionFilterChain filterChain, Packet packet)
           
 void LogFilter.packetSend(SessionFilterChain filterChain, Packet packet)
           
 void DispatcherFilter.packetSend(SessionFilterChain filterChain, Packet packet)
           
 void StatisticFilter.packetSent(SessionFilterChain filterChain, Packet packet)
           
 void NullFilter.packetSent(SessionFilterChain filterChain, Packet packet)
           
 void LogFilter.packetSent(SessionFilterChain filterChain, Packet packet)
           
 void DispatcherFilter.packetSent(SessionFilterChain filterChain, Packet packet)
           
 

Uses of Packet in net.sf.cindy.packet
 

Classes in net.sf.cindy.packet that implement Packet
 class DefaultPacket
          Default implementation of Packet.
 class DelegatePacket
          Delegate packet.
 class PriorityPacket
          Implementation of Packet, compared by priority and create time.
 

Methods in net.sf.cindy.packet that return Packet
 Packet DelegatePacket.getDelegate()
           
 

Constructors in net.sf.cindy.packet with parameters of type Packet
DelegatePacket(Packet packet)
           
PriorityPacket(Packet packet, int priority)
           
 

Uses of Packet in net.sf.cindy.session
 

Methods in net.sf.cindy.session with parameters of type Packet
 Future AbstractSession.flush(Packet packet)
           
 Future AbstractSession.flush(Packet packet, int priority)
           
 void AbstractSessionFilterChain.packetReceived(Packet packet)
           
 void AbstractSessionFilterChain.packetSend(Packet packet)
           
 void AbstractSessionFilterChain.packetSent(Packet packet)
           
protected abstract  Future AbstractSession.send(java.lang.Object obj, Packet packet, int priority)
           
 

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

Methods in net.sf.cindy.session.nio with parameters of type Packet
protected  void AbstractChannelSession.ChannelReactorHandler.checkSendPacket(Packet packet)
          Check send packet.
protected  Future AbstractChannelSession.send(java.lang.Object obj, Packet packet, int priority)
           
 Future ServerSocketChannelSession.send(Packet packet, int priority)
           
protected  boolean AbstractChannelSession.ChannelReactorHandler.write(Packet packet)
          Write packet to channel.