| Package | Description |
|---|---|
| io.valkey | |
| io.valkey.commands |
This package contains the interfaces that contain methods representing Redis core commands.
|
| io.valkey.params |
This package contains the classes that represent optional parameters of core Redis commands.
|
| Modifier and Type | Method and Description |
|---|---|
CommandObject<List<Object>> |
CommandObjects.xautoclaim(byte[] key,
byte[] groupName,
byte[] consumerName,
long minIdleTime,
byte[] start,
XAutoClaimParams params) |
Response<List<Object>> |
PipeliningBase.xautoclaim(byte[] key,
byte[] groupName,
byte[] consumerName,
long minIdleTime,
byte[] start,
XAutoClaimParams params) |
List<Object> |
Jedis.xautoclaim(byte[] key,
byte[] groupName,
byte[] consumerName,
long minIdleTime,
byte[] start,
XAutoClaimParams params) |
List<Object> |
UnifiedJedis.xautoclaim(byte[] key,
byte[] groupName,
byte[] consumerName,
long minIdleTime,
byte[] start,
XAutoClaimParams params) |
CommandObject<Map.Entry<StreamEntryID,List<StreamEntry>>> |
CommandObjects.xautoclaim(String key,
String group,
String consumerName,
long minIdleTime,
StreamEntryID start,
XAutoClaimParams params) |
Response<Map.Entry<StreamEntryID,List<StreamEntry>>> |
PipeliningBase.xautoclaim(String key,
String group,
String consumerName,
long minIdleTime,
StreamEntryID start,
XAutoClaimParams params) |
Map.Entry<StreamEntryID,List<StreamEntry>> |
Jedis.xautoclaim(String key,
String group,
String consumerName,
long minIdleTime,
StreamEntryID start,
XAutoClaimParams params) |
Map.Entry<StreamEntryID,List<StreamEntry>> |
UnifiedJedis.xautoclaim(String key,
String group,
String consumerName,
long minIdleTime,
StreamEntryID start,
XAutoClaimParams params) |
CommandObject<List<Object>> |
CommandObjects.xautoclaimJustId(byte[] key,
byte[] groupName,
byte[] consumerName,
long minIdleTime,
byte[] start,
XAutoClaimParams params) |
Response<List<Object>> |
PipeliningBase.xautoclaimJustId(byte[] key,
byte[] groupName,
byte[] consumerName,
long minIdleTime,
byte[] start,
XAutoClaimParams params) |
List<Object> |
Jedis.xautoclaimJustId(byte[] key,
byte[] groupName,
byte[] consumerName,
long minIdleTime,
byte[] start,
XAutoClaimParams params) |
List<Object> |
UnifiedJedis.xautoclaimJustId(byte[] key,
byte[] groupName,
byte[] consumerName,
long minIdleTime,
byte[] start,
XAutoClaimParams params) |
CommandObject<Map.Entry<StreamEntryID,List<StreamEntryID>>> |
CommandObjects.xautoclaimJustId(String key,
String group,
String consumerName,
long minIdleTime,
StreamEntryID start,
XAutoClaimParams params) |
Response<Map.Entry<StreamEntryID,List<StreamEntryID>>> |
PipeliningBase.xautoclaimJustId(String key,
String group,
String consumerName,
long minIdleTime,
StreamEntryID start,
XAutoClaimParams params) |
Map.Entry<StreamEntryID,List<StreamEntryID>> |
Jedis.xautoclaimJustId(String key,
String group,
String consumerName,
long minIdleTime,
StreamEntryID start,
XAutoClaimParams params) |
Map.Entry<StreamEntryID,List<StreamEntryID>> |
UnifiedJedis.xautoclaimJustId(String key,
String group,
String consumerName,
long minIdleTime,
StreamEntryID start,
XAutoClaimParams params) |
| Modifier and Type | Method and Description |
|---|---|
Response<List<Object>> |
StreamPipelineBinaryCommands.xautoclaim(byte[] key,
byte[] groupName,
byte[] consumerName,
long minIdleTime,
byte[] start,
XAutoClaimParams params) |
List<Object> |
StreamBinaryCommands.xautoclaim(byte[] key,
byte[] groupName,
byte[] consumerName,
long minIdleTime,
byte[] start,
XAutoClaimParams params) |
Map.Entry<StreamEntryID,List<StreamEntry>> |
StreamCommands.xautoclaim(String key,
String group,
String consumerName,
long minIdleTime,
StreamEntryID start,
XAutoClaimParams params)
XAUTOCLAIM key group consumer min-idle-time start [COUNT count]
|
Response<Map.Entry<StreamEntryID,List<StreamEntry>>> |
StreamPipelineCommands.xautoclaim(String key,
String group,
String consumerName,
long minIdleTime,
StreamEntryID start,
XAutoClaimParams params)
XAUTOCLAIM key group consumer min-idle-time start [COUNT count]
|
Response<List<Object>> |
StreamPipelineBinaryCommands.xautoclaimJustId(byte[] key,
byte[] groupName,
byte[] consumerName,
long minIdleTime,
byte[] start,
XAutoClaimParams params) |
List<Object> |
StreamBinaryCommands.xautoclaimJustId(byte[] key,
byte[] groupName,
byte[] consumerName,
long minIdleTime,
byte[] start,
XAutoClaimParams params) |
Map.Entry<StreamEntryID,List<StreamEntryID>> |
StreamCommands.xautoclaimJustId(String key,
String group,
String consumerName,
long minIdleTime,
StreamEntryID start,
XAutoClaimParams params)
XAUTOCLAIM key group consumer min-idle-time start [COUNT count] JUSTID
|
Response<Map.Entry<StreamEntryID,List<StreamEntryID>>> |
StreamPipelineCommands.xautoclaimJustId(String key,
String group,
String consumerName,
long minIdleTime,
StreamEntryID start,
XAutoClaimParams params)
XAUTOCLAIM key group consumer min-idle-time start [COUNT count] JUSTID
|
| Modifier and Type | Method and Description |
|---|---|
XAutoClaimParams |
XAutoClaimParams.count(int count)
Set the count of stream entries/ids to return as part of the command output.
|
static XAutoClaimParams |
XAutoClaimParams.xAutoClaimParams() |
Copyright © 2024. All rights reserved.