Package voldemort.client.protocol.vold

Examples of voldemort.client.protocol.vold.VoldemortNativeClientRequestFormat


    public RequestFormatFactory() {}

    public RequestFormat getRequestFormat(RequestFormatType type) {
        switch(type) {
            case VOLDEMORT_V1:
                return new VoldemortNativeClientRequestFormat(1);
            case VOLDEMORT_V2:
                return new VoldemortNativeClientRequestFormat(2);
            case VOLDEMORT_V3:
                return new VoldemortNativeClientRequestFormat(3);
            case PROTOCOL_BUFFERS:
                return new ProtoBuffClientRequestFormat();
            default:
                throw new IllegalArgumentException("Unknown request format type: " + type);
        }
View Full Code Here

TOP

Related Classes of voldemort.client.protocol.vold.VoldemortNativeClientRequestFormat

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.