Uses of Class
net.spy.memcached.ops.Mutator
-
Packages that use Mutator Package Description net.spy.memcached Memcached client and transformation utilsnet.spy.memcached.ops Fundamental protocol operation interfacesnet.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 Mutator in net.spy.memcached
Methods in net.spy.memcached with parameters of type Mutator Modifier and Type Method Description private OperationFuture<java.lang.Long>
MemcachedClient. asyncMutate(Mutator m, java.lang.String key, long by, long def, int exp)
private long
MemcachedClient. mutate(Mutator m, java.lang.String key, long by, long def, int exp)
MutatorOperation
OperationFactory. mutate(Mutator m, java.lang.String key, long by, long def, int exp, OperationCallback cb)
Create a mutator operation.private long
MemcachedClient. mutateWithDefault(Mutator t, java.lang.String key, long by, long def, int exp)
-
Uses of Mutator in net.spy.memcached.ops
Methods in net.spy.memcached.ops that return Mutator Modifier and Type Method Description Mutator
MutatorOperation. getType()
Get the mutator type used for this operation.static Mutator
Mutator. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Mutator[]
Mutator. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of Mutator in net.spy.memcached.protocol.ascii
Fields in net.spy.memcached.protocol.ascii declared as Mutator Modifier and Type Field Description private Mutator
MutatorOperationImpl. mutator
Methods in net.spy.memcached.protocol.ascii that return Mutator Modifier and Type Method Description Mutator
MutatorOperationImpl. getType()
Methods in net.spy.memcached.protocol.ascii with parameters of type Mutator Modifier and Type Method Description MutatorOperation
AsciiOperationFactory. mutate(Mutator m, java.lang.String key, long by, long exp, int def, OperationCallback cb)
Constructors in net.spy.memcached.protocol.ascii with parameters of type Mutator Constructor Description MutatorOperationImpl(Mutator m, java.lang.String k, long amt, OperationCallback c)
-
Uses of Mutator in net.spy.memcached.protocol.binary
Fields in net.spy.memcached.protocol.binary declared as Mutator Modifier and Type Field Description private Mutator
MutatorOperationImpl. mutator
Methods in net.spy.memcached.protocol.binary that return Mutator Modifier and Type Method Description Mutator
MutatorOperationImpl. getType()
Methods in net.spy.memcached.protocol.binary with parameters of type Mutator Modifier and Type Method Description MutatorOperation
BinaryOperationFactory. mutate(Mutator m, java.lang.String key, long by, long def, int exp, OperationCallback cb)
Constructors in net.spy.memcached.protocol.binary with parameters of type Mutator Constructor Description MutatorOperationImpl(Mutator m, java.lang.String k, long b, long d, int e, OperationCallback cb)
-