Package com.basho.riak.client.core.operations

Examples of com.basho.riak.client.core.operations.FetchBucketPropsOperation$Builder


    }
   
    private BucketProperties fetchBucketProps(Namespace namespace) throws InterruptedException, ExecutionException
    {
        FetchBucketPropsOperation.Builder builder = new FetchBucketPropsOperation.Builder(namespace);
        FetchBucketPropsOperation op = builder.build();
        cluster.execute(op);
        return op.get().getBucketProperties();
    }
View Full Code Here

TOP

Related Classes of com.basho.riak.client.core.operations.FetchBucketPropsOperation$Builder

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.