Package voldemort.store.socket.clientrequest

Examples of voldemort.store.socket.clientrequest.DeleteClientRequest


    public void submitDeleteRequest(ByteArray key,
                                    Version version,
                                    NonblockingStoreCallback callback,
                                    long timeoutMs) {
        StoreUtils.assertValidKey(key);
        DeleteClientRequest clientRequest = new DeleteClientRequest(getName(),
                                                                    requestFormat,
                                                                    requestRoutingType,
                                                                    key,
                                                                    version);
        if(logger.isDebugEnabled())
View Full Code Here


    }

    @Override
    public boolean delete(ByteArray key, Version version) throws VoldemortException {
        StoreUtils.assertValidKey(key);
        DeleteClientRequest clientRequest = new DeleteClientRequest(getName(),
                                                                    requestFormat,
                                                                    requestRoutingType,
                                                                    key,
                                                                    version);
        if(logger.isDebugEnabled())
View Full Code Here

TOP

Related Classes of voldemort.store.socket.clientrequest.DeleteClientRequest

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.