| Package | Description |
|---|---|
| com.spotify.folsom.client | |
| com.spotify.folsom.client.binary |
| Modifier and Type | Field and Description |
|---|---|
private static OpCode[] |
OpCode.BY_VALUE |
| Modifier and Type | Method and Description |
|---|---|
static OpCode |
OpCode.getKind(OpCode opcode) |
static OpCode |
OpCode.of(byte value) |
static OpCode |
OpCode.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OpCode[] |
OpCode.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
static OpCode |
OpCode.getKind(OpCode opcode) |
| Modifier and Type | Field and Description |
|---|---|
private OpCode |
GetRequest.opcode |
private OpCode |
IncrRequest.opcode |
OpCode |
ResponsePacket.opcode |
private OpCode |
SetRequest.opcode |
| Modifier and Type | Method and Description |
|---|---|
private java.util.concurrent.CompletionStage<MemcacheStatus> |
DefaultBinaryMemcacheClient.casSetInternal(OpCode opcode,
java.lang.String key,
V value,
int ttl,
long cas) |
private java.util.concurrent.CompletionStage<java.lang.Long> |
DefaultBinaryMemcacheClient.incrInternal(OpCode opcode,
java.lang.String key,
long by,
long initial,
int ttl) |
private java.util.concurrent.CompletionStage<MemcacheStatus> |
DefaultBinaryMemcacheClient.setInternal(OpCode opcode,
java.lang.String key,
V value,
int ttl) |
private void |
DefaultBinaryMemcacheClient.trace(OpCode opcode,
java.lang.String key,
byte[] value,
java.util.concurrent.CompletionStage<?> future) |
void |
BinaryRequest.writeHeader(java.nio.ByteBuffer dst,
OpCode opCode,
int extraLength,
int valueLength,
long cas) |
| Constructor and Description |
|---|
GetRequest(byte[] key,
OpCode opcode,
int ttl) |
IncrRequest(byte[] key,
OpCode opcode,
long by,
long initial,
int ttl) |
ResponsePacket(OpCode opcode,
MemcacheStatus status,
int opaque,
long cas,
byte[] key,
byte[] value) |
SetRequest(OpCode opcode,
byte[] key,
byte[] value,
int ttl,
long cas) |
Copyright © 2020 Spotify AB. All Rights Reserved.