Uses of Interface
net.spy.memcached.ops.GetOperation
-
Packages that use GetOperation Package Description net.spy.memcached Memcached client and transformation utilsnet.spy.memcached.protocol Base classes for protocol abstractions.net.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 GetOperation in net.spy.memcached
Methods in net.spy.memcached that return GetOperation Modifier and Type Method Description GetOperation
OperationFactory. get(java.lang.String key, GetOperation.Callback callback)
Create a get operation.GetOperation
OperationFactory. get(java.util.Collection<java.lang.String> keys, GetOperation.Callback cb)
Create a get operation. -
Uses of GetOperation in net.spy.memcached.protocol
Methods in net.spy.memcached.protocol with parameters of type GetOperation Modifier and Type Method Description void
ProxyCallback. addCallbacks(GetOperation o)
-
Uses of GetOperation in net.spy.memcached.protocol.ascii
Classes in net.spy.memcached.protocol.ascii that implement GetOperation Modifier and Type Class Description (package private) class
GetOperationImpl
Operation for retrieving data.(package private) class
OptimizedGetImpl
Optimized Get operation for folding a bunch of gets together.Methods in net.spy.memcached.protocol.ascii that return GetOperation Modifier and Type Method Description GetOperation
AsciiOperationFactory. get(java.lang.String key, GetOperation.Callback cb)
GetOperation
AsciiOperationFactory. get(java.util.Collection<java.lang.String> keys, GetOperation.Callback cb)
Methods in net.spy.memcached.protocol.ascii with parameters of type GetOperation Modifier and Type Method Description void
OptimizedGetImpl. addOperation(GetOperation o)
Add a new GetOperation to get.Constructors in net.spy.memcached.protocol.ascii with parameters of type GetOperation Constructor Description OptimizedGetImpl(GetOperation firstGet)
Construct an optimized get starting with the given get operation. -
Uses of GetOperation in net.spy.memcached.protocol.binary
Classes in net.spy.memcached.protocol.binary that implement GetOperation Modifier and Type Class Description (package private) class
GetOperationImpl
Implementation of the get operation.class
MultiGetOperationImpl
(package private) class
OptimizedGetImpl
Optimized Get operation for folding a bunch of gets together.Methods in net.spy.memcached.protocol.binary that return GetOperation Modifier and Type Method Description GetOperation
BinaryOperationFactory. get(java.lang.String key, GetOperation.Callback callback)
GetOperation
BinaryOperationFactory. get(java.util.Collection<java.lang.String> value, GetOperation.Callback cb)
Methods in net.spy.memcached.protocol.binary with parameters of type GetOperation Modifier and Type Method Description void
OptimizedGetImpl. addOperation(GetOperation o)
Add a new GetOperation to get.Constructors in net.spy.memcached.protocol.binary with parameters of type GetOperation Constructor Description OptimizedGetImpl(GetOperation firstGet)
Construct an optimized get starting with the given get operation.
-