Package com.basho.riak.client.api.cap

Examples of com.basho.riak.client.api.cap.VClock


      } else if (option == Option.BASIC_QUORUM)
      {
        builder.withBasicQuorum((Boolean) opPair.getValue());
      } else if (option == Option.IF_MODIFIED)
      {
        VClock clock = (VClock) opPair.getValue();
        builder.withIfNotModified(clock.getBytes());
      } else if (option == Option.N_VAL)
      {
        builder.withNVal((Integer) opPair.getValue());
      } else if (option == Option.PR)
      {
View Full Code Here

TOP

Related Classes of com.basho.riak.client.api.cap.VClock

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.