Uses of Class
net.spy.memcached.ops.StoreType
-
Packages that use StoreType Package Description net.spy.memcached Memcached client and transformation utilsnet.spy.memcached.ops Fundamental protocol operation interfacesnet.spy.memcached.protocol.ascii Low-level operations for the memcached ascii protocolnet.spy.memcached.protocol.binary Low-level operations for the memcached binary protocol -
-
Uses of StoreType in net.spy.memcached
Methods in net.spy.memcached with parameters of type StoreType Modifier and Type Method Description private OperationFuture<java.lang.Boolean>
MemcachedClient. asyncStore(StoreType storeType, java.lang.String key, int exp, java.lang.Object value)
private <T> OperationFuture<java.lang.Boolean>
MemcachedClient. asyncStore(StoreType storeType, java.lang.String key, int exp, T value, Transcoder<T> tc)
CASOperation
OperationFactory. cas(StoreType t, java.lang.String key, long casId, int flags, int exp, byte[] data, StoreOperation.Callback cb)
Create a CAS operation.StoreOperation
OperationFactory. store(StoreType storeType, java.lang.String key, int flags, int exp, byte[] data, StoreOperation.Callback cb)
Create a store operation. -
Uses of StoreType in net.spy.memcached.ops
Methods in net.spy.memcached.ops that return StoreType Modifier and Type Method Description StoreType
CASOperation. getStoreType()
Get the type of storage used by this CASOperation.StoreType
StoreOperation. getStoreType()
Get the store type used by this operation.static StoreType
StoreType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static StoreType[]
StoreType. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of StoreType in net.spy.memcached.protocol.ascii
Fields in net.spy.memcached.protocol.ascii declared as StoreType Modifier and Type Field Description private StoreType
StoreOperationImpl. storeType
Methods in net.spy.memcached.protocol.ascii that return StoreType Modifier and Type Method Description StoreType
CASOperationImpl. getStoreType()
StoreType
StoreOperationImpl. getStoreType()
Methods in net.spy.memcached.protocol.ascii with parameters of type StoreType Modifier and Type Method Description CASOperation
AsciiOperationFactory. cas(StoreType type, java.lang.String key, long casId, int flags, int exp, byte[] data, StoreOperation.Callback cb)
StoreOperation
AsciiOperationFactory. store(StoreType storeType, java.lang.String key, int flags, int exp, byte[] data, StoreOperation.Callback cb)
Constructors in net.spy.memcached.protocol.ascii with parameters of type StoreType Constructor Description StoreOperationImpl(StoreType t, java.lang.String k, int f, int e, byte[] d, OperationCallback cb)
-
Uses of StoreType in net.spy.memcached.protocol.binary
Fields in net.spy.memcached.protocol.binary declared as StoreType Modifier and Type Field Description private StoreType
StoreOperationImpl. storeType
Methods in net.spy.memcached.protocol.binary that return StoreType Modifier and Type Method Description StoreType
StoreOperationImpl. getStoreType()
Methods in net.spy.memcached.protocol.binary with parameters of type StoreType Modifier and Type Method Description CASOperation
BinaryOperationFactory. cas(StoreType type, java.lang.String key, long casId, int flags, int exp, byte[] data, StoreOperation.Callback cb)
private static byte
OptimizedSetImpl. cmdMap(StoreType t)
private static byte
StoreOperationImpl. cmdMap(StoreType t)
StoreOperation
BinaryOperationFactory. store(StoreType storeType, java.lang.String key, int flags, int exp, byte[] data, StoreOperation.Callback cb)
Constructors in net.spy.memcached.protocol.binary with parameters of type StoreType Constructor Description StoreOperationImpl(StoreType t, java.lang.String k, int f, int e, byte[] d, long c, StoreOperation.Callback cb)
-