Uses of Class
rabbit.io.WebConnection

Packages that use WebConnection
rabbit.io Classes that deal with network and i/o. 
rabbit.proxy The web proxy components. 
 

Uses of WebConnection in rabbit.io
 

Methods in rabbit.io that return types with arguments of type WebConnection
 Map<Address,List<WebConnection>> ConnectionHandler.getActiveConnections()
           
 

Methods in rabbit.io with parameters of type WebConnection
 void WebConnectionListener.connectionEstablished(WebConnection wc)
          A connection has been made.
 void ConnectionHandler.markForPipelining(WebConnection wc)
          Mark a WebConnection ready for pipelining.
 void ConnectionHandler.releaseConnection(WebConnection wc)
          Return a WebConnection to the pool so that it may be reused.
 

Uses of WebConnection in rabbit.proxy
 

Methods in rabbit.proxy with parameters of type WebConnection
 void SWC.connectionEstablished(WebConnection wc)
           
 void HttpProxy.markForPipelining(WebConnection wc)
          Mark a WebConnection for pipelining.
 void HttpProxy.releaseWebConnection(WebConnection wc)
          Release a WebConnection so that it may be reused if possible.
 void ClientResourceHandler.transfer(WebConnection wc, ClientResourceTransferredListener crtl)
          Transfer the resouce data
 

Constructors in rabbit.proxy with parameters of type WebConnection
WebConnectionResourceSource(Selector selector, WebConnection wc, ByteBuffer buffer, Logger logger, TrafficLogger tl, boolean isChunked, long dataSize, boolean strictHttp)