Uses of Interface
voldemort.client.protocol.RequestFormat

Packages that use RequestFormat
voldemort.client.protocol Classes that abstract the serialization format for Voldemort client requests. 
voldemort.client.protocol.pb A protocol buffers based client-side request format. 
voldemort.client.protocol.vold Classes specific to our native Voldemort protocol. 
voldemort.store.http HTTP based storage engine 
voldemort.store.socket.clientrequest More classes related to how to parse client requests 
 

Uses of RequestFormat in voldemort.client.protocol
 

Methods in voldemort.client.protocol that return RequestFormat
 RequestFormat RequestFormatFactory.getRequestFormat(RequestFormatType type)
           
 

Uses of RequestFormat in voldemort.client.protocol.pb
 

Classes in voldemort.client.protocol.pb that implement RequestFormat
 class ProtoBuffClientRequestFormat
          The client side of the protocol buffers request format
 

Uses of RequestFormat in voldemort.client.protocol.vold
 

Classes in voldemort.client.protocol.vold that implement RequestFormat
 class VoldemortNativeClientRequestFormat
          The RequestFormat for a low-overhead custom binary protocol
 

Uses of RequestFormat in voldemort.store.http
 

Constructors in voldemort.store.http with parameters of type RequestFormat
HttpStore(java.lang.String storeName, java.lang.String host, int port, org.apache.http.client.HttpClient client, RequestFormat format, boolean reroute)
           
 

Uses of RequestFormat in voldemort.store.socket.clientrequest
 

Fields in voldemort.store.socket.clientrequest declared as RequestFormat
protected  RequestFormat AbstractStoreClientRequest.requestFormat
           
 

Constructors in voldemort.store.socket.clientrequest with parameters of type RequestFormat
AbstractStoreClientRequest(java.lang.String storeName, RequestFormat requestFormat, RequestRoutingType requestRoutingType)
           
DeleteClientRequest(java.lang.String storeName, RequestFormat requestFormat, RequestRoutingType requestRoutingType, ByteArray key, Version version)
           
GetAllClientRequest(java.lang.String storeName, RequestFormat requestFormat, RequestRoutingType requestRoutingType, java.lang.Iterable<ByteArray> keys, java.util.Map<ByteArray,byte[]> transforms)
           
GetClientRequest(java.lang.String storeName, RequestFormat requestFormat, RequestRoutingType requestRoutingType, ByteArray key, byte[] transforms)
           
GetVersionsClientRequest(java.lang.String storeName, RequestFormat requestFormat, RequestRoutingType requestRoutingType, ByteArray key)
           
PutClientRequest(java.lang.String storeName, RequestFormat requestFormat, RequestRoutingType requestRoutingType, ByteArray key, Versioned<byte[]> versioned, byte[] transforms)
           
 



Jay Kreps, Roshan Sumbaly, Alex Feinberg, Bhupesh Bansal, Lei Gao, Chinmay Soman, Vinoth Chandar, Zhongjie Wu