Uses of Interface
com.basho.riak.client.cap.VClock

Packages that use VClock
com.basho.riak.client Provides the top-level IRiakClient and IRiakObject classes required to store data in Riak, start here. 
com.basho.riak.client.builders These builders provide a fluid API for creating instances of some immutable (or mainly immutable classes) that have a large number of constructor parameters. 
com.basho.riak.client.cap Classes that are relevant in the face of eventually consistent, fault tolerant databases (like Riak). 
com.basho.riak.client.convert Classes for converting Riak data into domain specific classes and back. 
com.basho.riak.client.operations The interfaces/classes that model the set of operations for talking to Riak. 
com.basho.riak.client.raw The raw interfaces/classes exist to provide unified access to any underlying transport clients for Riak 
com.basho.riak.pbc The legacy, low-level Protocol Buffers RiakClient and associated classes, consider using the high-level IRiakClient 
 

Uses of VClock in com.basho.riak.client
 

Methods in com.basho.riak.client that return VClock
 VClock IRiakObject.getVClock()
          This objects Vector Clock.
 VClock DefaultRiakObject.getVClock()
           
 

Constructors in com.basho.riak.client with parameters of type VClock
DefaultRiakObject(String bucket, String key, VClock vclock, String vtag, Date lastModified, String contentType, byte[] value, Collection<RiakLink> links, Map<String,String> userMeta, RiakIndexes indexes)
          Large number of arguments due to largely immutable nature.
 

Uses of VClock in com.basho.riak.client.builders
 

Methods in com.basho.riak.client.builders with parameters of type VClock
 RiakObjectBuilder RiakObjectBuilder.withVClock(VClock vclock)
          The new Riak objects vector clock.
 

Uses of VClock in com.basho.riak.client.cap
 

Classes in com.basho.riak.client.cap that implement VClock
 class BasicVClock
          An implementation of VClock that wraps a byte[]
 

Uses of VClock in com.basho.riak.client.convert
 

Methods in com.basho.riak.client.convert with parameters of type VClock
 IRiakObject PassThroughConverter.fromDomain(IRiakObject domainObject, VClock vclock)
           
 IRiakObject JSONConverter.fromDomain(T domainObject, VClock vclock)
          Converts domainObject to a JSON string and sets that as the payload of a IRiakObject.
 IRiakObject Converter.fromDomain(T domainObject, VClock vclock)
          Convert from domain specific type to RiakObject
 

Uses of VClock in com.basho.riak.client.operations
 

Methods in com.basho.riak.client.operations that return VClock
 VClock FetchObject.getVClock()
           
 

Methods in com.basho.riak.client.operations with parameters of type VClock
 FetchObject<T> FetchObject.ifModified(VClock vclock)
          *NOTE* PB Only.
 DeleteObject DeleteObject.vclock(VClock vclock)
          Provide a vclock to riak for the delete operation.
 

Uses of VClock in com.basho.riak.client.raw
 

Methods in com.basho.riak.client.raw that return VClock
 VClock FetchMeta.getIfModifiedVClock()
          The VClock to use in a conditional fetch with the PB API.
 VClock RiakResponse.getVclock()
          Get the vector clock as a VClock
 VClock DeleteMeta.getVclock()
           
 

Methods in com.basho.riak.client.raw with parameters of type VClock
 FetchMeta.Builder FetchMeta.Builder.vclock(VClock vclock)
           
 DeleteMeta.Builder DeleteMeta.Builder.vclock(VClock vclock)
           
 

Constructors in com.basho.riak.client.raw with parameters of type VClock
DeleteMeta(Integer r, Integer pr, Integer w, Integer dw, Integer pw, Integer rw, VClock vclock)
          Any of the parameters may be null.
DeleteMeta(Quorum r, Quorum pr, Quorum w, Quorum dw, Quorum pw, Quorum rw, VClock vclock)
          Any of the parameters may be null.
FetchMeta(Integer r, Integer pr, Boolean notFoundOK, Boolean basicQuorum, Boolean headOnly, Boolean returnDeletedVClock, Date ifModifiedSince, VClock ifModifiedVClock)
          Create a fetch meta with the specified parameters for a conditional fetch with the either API
FetchMeta(Quorum r, Quorum pr, Boolean notFoundOK, Boolean basicQuorum, Boolean headOnly, Boolean returnDeletedVClock, Date ifModifiedSince, VClock ifModifiedVClock)
          Create a fetch meta with the specified parameters for a conditional fetch with the either API
 

Uses of VClock in com.basho.riak.pbc
 

Constructors in com.basho.riak.pbc with parameters of type VClock
FetchMeta(Integer r, Integer pr, Boolean notFoundOK, Boolean basicQuorum, Boolean headOnly, Boolean returnDeletedVClock, VClock ifModifiedVClock)
           
 



Copyright © 2012. All Rights Reserved.