Uses of Interface
net.sf.jbaobab.io.Protocol

Packages that use Protocol
net.sf.jbaobab.helper Contains helper classes. 
net.sf.jbaobab.io Contains core interfaces and implementations of JBaobab framework. 
net.sf.jbaobab.io.etc Provides useful but not required classes for net.sf.jbaobab.io package. 
net.sf.jbaobab.io.impl Contains rough implementations of some wide-spread protocols. 
 

Uses of Protocol in net.sf.jbaobab.helper
 

Classes in net.sf.jbaobab.helper that implement Protocol
static class ProtocolHelper.PackedProtocolImpl<P>
           A Protocol that delegates operations to Seperator and Translator.
 

Methods in net.sf.jbaobab.helper that return Protocol
static Protocol<ByteBuffer> ProtocolHelper.pack(Seperator seperator)
           
static
<P> Protocol<P>
ProtocolHelper.pack(Seperator seperator, Translator<P> translator)
           
 

Uses of Protocol in net.sf.jbaobab.io
 

Fields in net.sf.jbaobab.io declared as Protocol
protected  Protocol<P> SimpleSocketCore.protocol
           
 

Fields in net.sf.jbaobab.io with type parameters of type Protocol
protected  ThreadLocal<Protocol<P>> ThreadedSocketCore.protocol
           
 

Methods in net.sf.jbaobab.io that return Protocol
 Protocol<P> ProtocolFactory.newProtocol()
           
 Protocol<P> ThreadedSocketCore.protocol()
           
 Protocol<P> SimpleSocketCore.protocol()
           
 Protocol<P> ExpirableSocketCore.protocol()
           
 Protocol<P> ChannelCore.protocol()
           
 

Constructors in net.sf.jbaobab.io with parameters of type Protocol
SimpleSocketCore(Protocol<P> protocol)
           
 

Uses of Protocol in net.sf.jbaobab.io.etc
 

Methods in net.sf.jbaobab.io.etc that return Protocol
 Protocol<P> ChannelCoreSet.protocol()
           
 Protocol<P> ChannelCoreBank.protocol()
           
 

Uses of Protocol in net.sf.jbaobab.io.impl
 

Classes in net.sf.jbaobab.io.impl that implement Protocol
 class RoughHttpProtocol
           A Protocol that implements HTTP/1.0 very roughly.