Uses of Interface
net.sf.cindy.Future

Packages that use Future
net.sf.cindy   
net.sf.cindy.session   
net.sf.cindy.session.nio   
 

Uses of Future in net.sf.cindy
 

Methods in net.sf.cindy that return Future
 Future Session.close()
          Close the session.
 Future Session.flush(Packet packet)
          Send packet with normal priority.
 Future Session.flush(Packet packet, int priority)
          Send packet with specified priority.
 Future Session.send(java.lang.Object obj)
          Send object with normal priority.
 Future Session.send(java.lang.Object obj, int priority)
          Send object with specified priority.
 Future Session.start()
          Start the session.
 

Methods in net.sf.cindy with parameters of type Future
 void FutureListener.futureCompleted(Future future)
          Future completed.
 

Uses of Future in net.sf.cindy.session
 

Classes in net.sf.cindy.session that implement Future
 class DefaultFuture
          Default future implementation.
 

Methods in net.sf.cindy.session that return Future
 Future AbstractSession.flush(Packet packet)
           
 Future AbstractSession.flush(Packet packet, int priority)
           
 Future AbstractSession.send(java.lang.Object obj)
           
 Future AbstractSession.send(java.lang.Object obj, int priority)
           
protected abstract  Future AbstractSession.send(java.lang.Object obj, Packet packet, int priority)
           
 

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

Methods in net.sf.cindy.session.nio that return Future
 Future AbstractChannelSession.close()
           
protected  Future AbstractChannelSession.send(java.lang.Object obj, Packet packet, int priority)
           
 Future ServerSocketChannelSession.send(Packet packet, int priority)
           
 Future AbstractChannelSession.start()