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(java.lang.String key, int expiration, OperationCallback cb)
          Resets a keys expiration time.
 

Methods in net.spy.memcached with parameters of type KeyedOperation
 java.util.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
 java.util.Collection<Operation> BaseOperationFactory.clone(KeyedOperation op)
           
protected abstract  java.util.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
          Implementation of the get and touch operation.
 

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

Methods in net.spy.memcached.protocol.ascii with parameters of type KeyedOperation
protected  java.util.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 GetlOperationImpl
          Implementation of the get and lock operation.
 class GetsOperationImpl
          Implementation of the gets operation.
 class OptimizedSetImpl
          Optimized Set operation for folding a bunch of sets together.
 class TouchOperationImpl
          Operation to reset a timeout in Membase server.
 

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

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



Copyright © 2006-2009 Dustin Sallings, 2009-2012 Couchbase, Inc.