Uses of Class
voldemort.store.StoreCapabilityType

Packages that use StoreCapabilityType
voldemort.store The Store interface is the primary interface for Voldemort. 
voldemort.store.compress Classes associated with compression on the server ( storage ) side. 
voldemort.store.configuration A storage engine to persist metadata on a server. 
voldemort.store.logging A wrapper store which deals with logging. 
voldemort.store.metadata Our in-memory metadata store on the server which is backed by the configuration files. 
voldemort.store.routed A store implmentation that handles routing to nodes, and repairing obsolete values detected on those nodes. 
voldemort.store.serialized A store implementation that handles serialization to bytes from rich objects. 
voldemort.store.slop A store implementation that falls back on storing values in additional nodes not in the preference list when nodes are unavailable. 
voldemort.store.socket A store implementation that works remotely over a tcp/ip socket interacting with a SocketServer on the the other side. 
voldemort.store.stats Store wrappers which deal with statistics 
voldemort.store.versioned Store decorators that interact with versions. 
voldemort.store.views Classes related to Views and server side transforms 
 

Uses of StoreCapabilityType in voldemort.store
 

Methods in voldemort.store that return StoreCapabilityType
static StoreCapabilityType StoreCapabilityType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StoreCapabilityType[] StoreCapabilityType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in voldemort.store with parameters of type StoreCapabilityType
 java.lang.Object Store.getCapability(StoreCapabilityType capability)
          Get some capability of the store.
 java.lang.Object DelegatingStore.getCapability(StoreCapabilityType capability)
           
 java.lang.Object AbstractStore.getCapability(StoreCapabilityType capability)
           
 

Constructors in voldemort.store with parameters of type StoreCapabilityType
NoSuchCapabilityException(StoreCapabilityType capability, java.lang.String storeName)
           
 

Uses of StoreCapabilityType in voldemort.store.compress
 

Methods in voldemort.store.compress with parameters of type StoreCapabilityType
 java.lang.Object CompressingStore.getCapability(StoreCapabilityType capability)
           
 

Uses of StoreCapabilityType in voldemort.store.configuration
 

Methods in voldemort.store.configuration with parameters of type StoreCapabilityType
 java.lang.Object ConfigurationStorageEngine.getCapability(StoreCapabilityType capability)
           
 java.lang.Object FileBackedCachingStorageEngine.getCapability(StoreCapabilityType capability)
           
 

Uses of StoreCapabilityType in voldemort.store.logging
 

Methods in voldemort.store.logging with parameters of type StoreCapabilityType
 java.lang.Object LoggingStore.getCapability(StoreCapabilityType capability)
           
 

Uses of StoreCapabilityType in voldemort.store.metadata
 

Methods in voldemort.store.metadata with parameters of type StoreCapabilityType
 java.lang.Object MetadataStore.getCapability(StoreCapabilityType capability)
           
 

Uses of StoreCapabilityType in voldemort.store.routed
 

Methods in voldemort.store.routed with parameters of type StoreCapabilityType
 java.lang.Object RoutedStore.getCapability(StoreCapabilityType capability)
           
 

Uses of StoreCapabilityType in voldemort.store.serialized
 

Methods in voldemort.store.serialized with parameters of type StoreCapabilityType
 java.lang.Object SerializingStore.getCapability(StoreCapabilityType capability)
           
 

Uses of StoreCapabilityType in voldemort.store.slop
 

Methods in voldemort.store.slop with parameters of type StoreCapabilityType
 java.lang.Object SlopStorageEngine.getCapability(StoreCapabilityType capability)
           
 

Uses of StoreCapabilityType in voldemort.store.socket
 

Methods in voldemort.store.socket with parameters of type StoreCapabilityType
 java.lang.Object SocketStore.getCapability(StoreCapabilityType capability)
           
 

Uses of StoreCapabilityType in voldemort.store.stats
 

Methods in voldemort.store.stats with parameters of type StoreCapabilityType
 java.lang.Object StatTrackingStore.getCapability(StoreCapabilityType capability)
           
 

Uses of StoreCapabilityType in voldemort.store.versioned
 

Methods in voldemort.store.versioned with parameters of type StoreCapabilityType
 java.lang.Object VersionIncrementingStore.getCapability(StoreCapabilityType capability)
           
 java.lang.Object InconsistencyResolvingStore.getCapability(StoreCapabilityType capability)
           
 

Uses of StoreCapabilityType in voldemort.store.views
 

Methods in voldemort.store.views with parameters of type StoreCapabilityType
 java.lang.Object ViewStorageEngine.getCapability(StoreCapabilityType capability)
           
 



Jay Kreps, Roshan Sumbaly, Alex Feinberg, Bhupesh Bansal, Lei Gao, Chinmay Soman, Vinoth Chandar, Zhongjie Wu