Package net.spy.memcached.ops
Interface ObserveOperation.Callback
-
- All Superinterfaces:
OperationCallback
- Enclosing interface:
- ObserveOperation
public static interface ObserveOperation.Callback extends OperationCallback
Operation callback for the Observe request.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
gotData(java.lang.String key, long cas, MemcachedNode node, ObserveResponse or)
Callback for each result from a observe.-
Methods inherited from interface net.spy.memcached.ops.OperationCallback
complete, receivedStatus
-
-
-
-
Method Detail
-
gotData
void gotData(java.lang.String key, long cas, MemcachedNode node, ObserveResponse or)
Callback for each result from a observe.- Parameters:
key
- the key that was retrievedcas
- the CAS value for this recordor
- the ObserveResponse
-
-