Uses of Class
voldemort.client.protocol.RequestFormatType

Packages that use RequestFormatType
voldemort.client The user facing interface to Voldemort. 
voldemort.client.protocol Classes that abstract the serialization format for Voldemort client requests. 
voldemort.client.protocol.admin Classes that abstract admin based Voldemort requests. 
voldemort.server The Voldemort server. 
voldemort.server.http The HTTP server. 
voldemort.server.protocol The server side of request RPC handling. 
voldemort.store.socket A store implementation that works remotely over a tcp/ip socket interacting with a SocketServer on the the other side. 
voldemort.store.socket.clientrequest More classes related to how to parse client requests 
 

Uses of RequestFormatType in voldemort.client
 

Methods in voldemort.client that return RequestFormatType
 RequestFormatType ClientConfig.getRequestFormatType()
           
 RequestFormatType AbstractStoreClientFactory.getRequestFormatType()
           
 

Methods in voldemort.client with parameters of type RequestFormatType
protected abstract  Store<ByteArray,byte[],byte[]> AbstractStoreClientFactory.getStore(java.lang.String storeName, java.lang.String host, int port, RequestFormatType type)
           
protected  Store<ByteArray,byte[],byte[]> SocketStoreClientFactory.getStore(java.lang.String storeName, java.lang.String host, int port, RequestFormatType type)
           
protected  Store<ByteArray,byte[],byte[]> HttpStoreClientFactory.getStore(java.lang.String name, java.lang.String host, int port, RequestFormatType type)
          Deprecated.  
 ClientConfig ClientConfig.setRequestFormatType(RequestFormatType requestFormatType)
          Set the request format type used for network communications (for example protocol buffers)
 

Uses of RequestFormatType in voldemort.client.protocol
 

Methods in voldemort.client.protocol that return RequestFormatType
static RequestFormatType RequestFormatType.fromCode(java.lang.String code)
           
static RequestFormatType RequestFormatType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RequestFormatType[] RequestFormatType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in voldemort.client.protocol with parameters of type RequestFormatType
 RequestFormat RequestFormatFactory.getRequestFormat(RequestFormatType type)
           
 

Uses of RequestFormatType in voldemort.client.protocol.admin
 

Methods in voldemort.client.protocol.admin that return RequestFormatType
 RequestFormatType SocketAndStreams.getRequestFormatType()
           
 

Constructors in voldemort.client.protocol.admin with parameters of type RequestFormatType
SocketAndStreams(java.net.Socket socket, int bufferSizeBytes, RequestFormatType type)
           
SocketAndStreams(java.net.Socket socket, RequestFormatType requestFormatType)
           
 

Uses of RequestFormatType in voldemort.server
 

Methods in voldemort.server that return RequestFormatType
 RequestFormatType VoldemortConfig.getRequestFormatType()
           
 

Methods in voldemort.server with parameters of type RequestFormatType
 void VoldemortConfig.setRequestFormatType(RequestFormatType type)
          ClientConfig.setRequestFormatType(RequestFormatType) Property :"request.format" Default :"vp1"
 

Uses of RequestFormatType in voldemort.server.http
 

Constructors in voldemort.server.http with parameters of type RequestFormatType
HttpService(VoldemortServer server, StorageService storageService, StoreRepository storeRepository, RequestFormatType requestType, int numberOfThreads, int httpPort)
           
 

Uses of RequestFormatType in voldemort.server.protocol
 

Methods in voldemort.server.protocol with parameters of type RequestFormatType
 RequestHandler RequestHandlerFactory.getRequestHandler(RequestFormatType type)
           
 RequestHandler SocketRequestHandlerFactory.getRequestHandler(RequestFormatType type)
           
 

Uses of RequestFormatType in voldemort.store.socket
 

Methods in voldemort.store.socket that return RequestFormatType
 RequestFormatType SocketDestination.getRequestFormatType()
           
 

Methods in voldemort.store.socket with parameters of type RequestFormatType
 SocketStore SocketStoreFactory.create(java.lang.String storeName, java.lang.String hostName, int port, RequestFormatType requestFormatType, RequestRoutingType requestRoutingType)
          Creates a new SocketStore using the specified store name, remote server, format type and routing type.
 

Constructors in voldemort.store.socket with parameters of type RequestFormatType
SocketDestination(java.lang.String host, int port, RequestFormatType requestFormatType)
           
 

Uses of RequestFormatType in voldemort.store.socket.clientrequest
 

Methods in voldemort.store.socket.clientrequest with parameters of type RequestFormatType
 SocketStore ClientRequestExecutorPool.create(java.lang.String storeName, java.lang.String hostName, int port, RequestFormatType requestFormatType, RequestRoutingType requestRoutingType)
          Create a new socket store to talk to a given server for a specific store Note: IGNORE_CHECKS will only be honored for Protobuf request format
 

Constructors in voldemort.store.socket.clientrequest with parameters of type RequestFormatType
ProtocolNegotiatorClientRequest(RequestFormatType requestFormatType)
           
 



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