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 that return KeyedOperation
 KeyedOperation OperationFactory.touch(String key, int expiration, OperationCallback cb)
          Resets a keys expiration time
 

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 GetAndTouchOperation
          Gat operation.
 interface GetlOperation
          Getl 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.
 class GetAndTouchOperationImpl
           
 

Methods in net.spy.memcached.protocol.ascii that return KeyedOperation
 KeyedOperation AsciiOperationFactory.touch(String key, int expiration, OperationCallback cb)
           
 

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
 

Classes in net.spy.memcached.protocol.binary that implement KeyedOperation
 class TouchOperationImpl
          Operation to reset a timeout in Membase server.
 

Methods in net.spy.memcached.protocol.binary that return KeyedOperation
 KeyedOperation BinaryOperationFactory.touch(String key, int expiration, OperationCallback cb)
           
 

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