Uses of Class
net.spy.memcached.tapmessage.TapOpcode
-
Packages that use TapOpcode 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 protocolnet.spy.memcached.tapmessage -
-
Uses of TapOpcode in net.spy.memcached
Methods in net.spy.memcached with parameters of type TapOpcode Modifier and Type Method Description TapOperation
OperationFactory. tapAck(TapOpcode opcode, int opaque, OperationCallback cb)
Sends a tap ack message to the server.private void
TapClient. tapAck(TapConnectionProvider conn, MemcachedNode node, TapOpcode opcode, int opaque, OperationCallback cb)
-
Uses of TapOpcode in net.spy.memcached.ops
Methods in net.spy.memcached.ops with parameters of type TapOpcode Modifier and Type Method Description void
TapOperation.Callback. gotAck(MemcachedNode node, TapOpcode opcode, int opaque)
-
Uses of TapOpcode in net.spy.memcached.protocol.ascii
Methods in net.spy.memcached.protocol.ascii with parameters of type TapOpcode Modifier and Type Method Description TapOperation
AsciiOperationFactory. tapAck(TapOpcode opcode, int opaque, OperationCallback cb)
-
Uses of TapOpcode in net.spy.memcached.protocol.binary
Fields in net.spy.memcached.protocol.binary declared as TapOpcode Modifier and Type Field Description private TapOpcode
TapAckOperationImpl. opcode
Methods in net.spy.memcached.protocol.binary with parameters of type TapOpcode Modifier and Type Method Description TapOperation
BinaryOperationFactory. tapAck(TapOpcode opcode, int opaque, OperationCallback cb)
Constructors in net.spy.memcached.protocol.binary with parameters of type TapOpcode Constructor Description TapAckOperationImpl(TapOpcode opcode, int opaque, OperationCallback cb)
-
Uses of TapOpcode in net.spy.memcached.tapmessage
Fields in net.spy.memcached.tapmessage declared as TapOpcode Modifier and Type Field Description protected TapOpcode
BaseMessage. opcode
private TapOpcode
TapAck. opcode
Methods in net.spy.memcached.tapmessage that return TapOpcode Modifier and Type Method Description TapOpcode
BaseMessage. getOpcode()
Gets the value of the tap messages opaque field.TapOpcode
TapAck. getOpcode()
static TapOpcode
TapOpcode. getOpcodeByByte(byte b)
static TapOpcode
TapOpcode. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TapOpcode[]
TapOpcode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in net.spy.memcached.tapmessage with parameters of type TapOpcode Modifier and Type Method Description void
BaseMessage. setOpcode(TapOpcode o)
Sets the value of the tap messages opcode field.Constructors in net.spy.memcached.tapmessage with parameters of type TapOpcode Constructor Description TapAck(TapConnectionProvider conn, MemcachedNode node, TapOpcode opcode, int opaque, OperationCallback cb)
-