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

Packages that use KeyedOperation
net.spy.memcached Memcached client and transformation utils 
net.spy.memcached.ops Fundamental protocol operation interfaces 
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 KeyedOperation in net.spy.memcached
 

Methods in net.spy.memcached with parameters of type KeyedOperation
 Collection<Operation> OperationFactory.clone(KeyedOperation op)
          Clone an operation.
 

Uses of KeyedOperation in net.spy.memcached.ops
 

Subinterfaces of KeyedOperation in net.spy.memcached.ops
 interface CASOperation
          Operation that represents compare-and-swap.
 interface ConcatenationOperation
          ConcatenationOperation is used to append or prepend data to an existing object in the cache.
 interface DeleteOperation
          Deletion operation.
 interface GetOperation
          Get operation.
 interface GetsOperation
          Gets operation (get with CAS identifier support).
 interface MutatorOperation
          incr and decr operations.
 interface StoreOperation
          Operation that represents object storage.
 

Methods in net.spy.memcached.ops with parameters of type KeyedOperation
 Collection<Operation> BaseOperationFactory.clone(KeyedOperation op)
           
protected abstract  Collection<? extends Operation> BaseOperationFactory.cloneGet(KeyedOperation op)
           
 

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

Classes in net.spy.memcached.protocol.ascii that implement KeyedOperation
 class ConcatenationOperationImpl
          Operation for ascii concatenations.
 

Methods in net.spy.memcached.protocol.ascii with parameters of type KeyedOperation
protected  Collection<? extends Operation> AsciiOperationFactory.cloneGet(KeyedOperation op)
           
 

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

Methods in net.spy.memcached.protocol.binary with parameters of type KeyedOperation
protected  Collection<? extends Operation> BinaryOperationFactory.cloneGet(KeyedOperation op)