Uses of Interface
net.spy.memcached.ops.CASOperation

Packages that use CASOperation
net.spy.memcached Memcached client and transformation utils 
net.spy.memcached.protocol.ascii Low-level operations for the memcached ascii protocol 
net.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
 CASOperation OperationFactory.cas(StoreType t, String key, long casId, int flags, int exp, byte[] data, OperationCallback cb)
          Create a CAS operation.
 

Uses of CASOperation in net.spy.memcached.protocol.ascii
 

Methods in net.spy.memcached.protocol.ascii that return CASOperation
 CASOperation AsciiOperationFactory.cas(StoreType type, String key, long casId, int flags, int exp, byte[] data, OperationCallback cb)
           
 

Uses of CASOperation in net.spy.memcached.protocol.binary
 

Methods in net.spy.memcached.protocol.binary that return CASOperation
 CASOperation BinaryOperationFactory.cas(StoreType type, String key, long casId, int flags, int exp, byte[] data, OperationCallback cb)
           
 

Methods in net.spy.memcached.protocol.binary with parameters of type CASOperation
 void OptimizedSetImpl.addOperation(CASOperation op)
           
 

Constructors in net.spy.memcached.protocol.binary with parameters of type CASOperation
OptimizedSetImpl(CASOperation firstStore)
          Construct an optimized get starting with the given get operation.