Uses of Interface
net.spy.memcached.ops.CASOperation
-
Packages that use CASOperation Package Description net.spy.memcached Memcached client and transformation utilsnet.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 CASOperation in net.spy.memcached
Methods in net.spy.memcached that return CASOperation Modifier and Type Method Description CASOperation
OperationFactory. cas(StoreType t, java.lang.String key, long casId, int flags, int exp, byte[] data, StoreOperation.Callback cb)
Create a CAS operation. -
Uses of CASOperation in net.spy.memcached.protocol.ascii
Classes in net.spy.memcached.protocol.ascii that implement CASOperation Modifier and Type Class Description (package private) class
CASOperationImpl
Methods in net.spy.memcached.protocol.ascii that return CASOperation 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)
-
Uses of CASOperation in net.spy.memcached.protocol.binary
Classes in net.spy.memcached.protocol.binary that implement CASOperation Modifier and Type Class Description (package private) class
StoreOperationImpl
Fields in net.spy.memcached.protocol.binary with type parameters of type CASOperation Modifier and Type Field Description private java.util.List<CASOperation>
OptimizedSetImpl. ops
Methods in net.spy.memcached.protocol.binary that return CASOperation 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)
Methods in net.spy.memcached.protocol.binary with parameters of type CASOperation Modifier and Type Method Description void
OptimizedSetImpl. addOperation(CASOperation op)
Constructors in net.spy.memcached.protocol.binary with parameters of type CASOperation Constructor Description OptimizedSetImpl(CASOperation firstStore)
Construct an optimized get starting with the given get operation.
-