Uses of Interface
net.spy.memcached.ops.TapOperation
-
Packages that use TapOperation Package Description net.spy.memcached Memcached client and transformation utilsnet.spy.memcached.protocol.ascii Low-level operations for the memcached ascii protocolnet.spy.memcached.protocol.binary Low-level operations for the memcached binary protocolnet.spy.memcached.tapmessage -
-
Uses of TapOperation in net.spy.memcached
Methods in net.spy.memcached that return TapOperation Modifier and Type Method Description TapOperation
OperationFactory. tapAck(TapOpcode opcode, int opaque, OperationCallback cb)
Sends a tap ack message to the server.TapOperation
OperationFactory. tapBackfill(java.lang.String id, long date, OperationCallback cb)
Creates a tap backfill stream.TapOperation
OperationFactory. tapCustom(java.lang.String id, RequestMessage message, OperationCallback cb)
Creates a custom tap stream.TapOperation
OperationFactory. tapDump(java.lang.String id, OperationCallback cb)
Sends a tap dump message to the server. -
Uses of TapOperation in net.spy.memcached.protocol.ascii
Methods in net.spy.memcached.protocol.ascii that return TapOperation Modifier and Type Method Description TapOperation
AsciiOperationFactory. tapAck(TapOpcode opcode, int opaque, OperationCallback cb)
TapOperation
AsciiOperationFactory. tapBackfill(java.lang.String id, long date, OperationCallback cb)
TapOperation
AsciiOperationFactory. tapCustom(java.lang.String id, RequestMessage message, OperationCallback cb)
TapOperation
AsciiOperationFactory. tapDump(java.lang.String id, OperationCallback cb)
-
Uses of TapOperation in net.spy.memcached.protocol.binary
Classes in net.spy.memcached.protocol.binary that implement TapOperation Modifier and Type Class Description class
TapAckOperationImpl
Implementation of a tap ACK operation.class
TapBackfillOperationImpl
Implementation of a tap backfill operation.class
TapCustomOperationImpl
Implementation of a custom tap operation.class
TapDumpOperationImpl
Implementation of a tap dump operation.class
TapOperationImpl
Abstract implementation of a tap operation.Methods in net.spy.memcached.protocol.binary that return TapOperation Modifier and Type Method Description TapOperation
BinaryOperationFactory. tapAck(TapOpcode opcode, int opaque, OperationCallback cb)
TapOperation
BinaryOperationFactory. tapBackfill(java.lang.String id, long date, OperationCallback cb)
TapOperation
BinaryOperationFactory. tapCustom(java.lang.String id, RequestMessage message, OperationCallback cb)
TapOperation
BinaryOperationFactory. tapDump(java.lang.String id, OperationCallback cb)
-
Uses of TapOperation in net.spy.memcached.tapmessage
Fields in net.spy.memcached.tapmessage with type parameters of type TapOperation Modifier and Type Field Description private java.util.List<TapOperation>
TapStream. ops
Methods in net.spy.memcached.tapmessage with parameters of type TapOperation Modifier and Type Method Description void
TapStream. addOp(TapOperation op)
Add an operation to the stream of TAP messages which have been sent to the server.
-