| 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.xreadGroup(byte[] groupName,
byte[] consumer,
XReadGroupParams xReadGroupParams,
Map.Entry<byte[],byte[]>... streams) |
Response<List<Object>> |
PipeliningBase.xreadGroup(byte[] groupName,
byte[] consumer,
XReadGroupParams xReadGroupParams,
Map.Entry<byte[],byte[]>... streams) |
List<Object> |
Jedis.xreadGroup(byte[] groupName,
byte[] consumer,
XReadGroupParams xReadGroupParams,
Map.Entry<byte[],byte[]>... streams) |
List<Object> |
UnifiedJedis.xreadGroup(byte[] groupName,
byte[] consumer,
XReadGroupParams xReadGroupParams,
Map.Entry<byte[],byte[]>... streams) |
CommandObject<List<Map.Entry<String,List<StreamEntry>>>> |
CommandObjects.xreadGroup(String groupName,
String consumer,
XReadGroupParams xReadGroupParams,
Map<String,StreamEntryID> streams) |
Response<List<Map.Entry<String,List<StreamEntry>>>> |
PipeliningBase.xreadGroup(String groupName,
String consumer,
XReadGroupParams xReadGroupParams,
Map<String,StreamEntryID> streams) |
List<Map.Entry<String,List<StreamEntry>>> |
Jedis.xreadGroup(String groupName,
String consumer,
XReadGroupParams xReadGroupParams,
Map<String,StreamEntryID> streams) |
List<Map.Entry<String,List<StreamEntry>>> |
UnifiedJedis.xreadGroup(String groupName,
String consumer,
XReadGroupParams xReadGroupParams,
Map<String,StreamEntryID> streams) |
CommandObject<Map<String,List<StreamEntry>>> |
CommandObjects.xreadGroupAsMap(String groupName,
String consumer,
XReadGroupParams xReadGroupParams,
Map<String,StreamEntryID> streams) |
Response<Map<String,List<StreamEntry>>> |
PipeliningBase.xreadGroupAsMap(String groupName,
String consumer,
XReadGroupParams xReadGroupParams,
Map<String,StreamEntryID> streams) |
Map<String,List<StreamEntry>> |
Jedis.xreadGroupAsMap(String groupName,
String consumer,
XReadGroupParams xReadGroupParams,
Map<String,StreamEntryID> streams) |
Map<String,List<StreamEntry>> |
UnifiedJedis.xreadGroupAsMap(String groupName,
String consumer,
XReadGroupParams xReadGroupParams,
Map<String,StreamEntryID> streams) |
| Modifier and Type | Method and Description |
|---|---|
Response<List<Object>> |
StreamPipelineBinaryCommands.xreadGroup(byte[] groupName,
byte[] consumer,
XReadGroupParams xReadGroupParams,
Map.Entry<byte[],byte[]>... streams) |
List<Object> |
StreamBinaryCommands.xreadGroup(byte[] groupName,
byte[] consumer,
XReadGroupParams xReadGroupParams,
Map.Entry<byte[],byte[]>... streams) |
List<Map.Entry<String,List<StreamEntry>>> |
StreamCommands.xreadGroup(String groupName,
String consumer,
XReadGroupParams xReadGroupParams,
Map<String,StreamEntryID> streams)
XREADGROUP GROUP group consumer [COUNT count] [BLOCK milliseconds] [NOACK] STREAMS key [key ...] id [id ...]
|
Response<List<Map.Entry<String,List<StreamEntry>>>> |
StreamPipelineCommands.xreadGroup(String groupName,
String consumer,
XReadGroupParams xReadGroupParams,
Map<String,StreamEntryID> streams)
XREADGROUP GROUP group consumer [COUNT count] [BLOCK milliseconds] [NOACK] STREAMS key [key ...] id [id ...]
|
Map<String,List<StreamEntry>> |
StreamCommands.xreadGroupAsMap(String groupName,
String consumer,
XReadGroupParams xReadGroupParams,
Map<String,StreamEntryID> streams)
XREADGROUP GROUP group consumer [COUNT count] [BLOCK milliseconds] [NOACK] STREAMS key [key ...] id [id ...]
|
Response<Map<String,List<StreamEntry>>> |
StreamPipelineCommands.xreadGroupAsMap(String groupName,
String consumer,
XReadGroupParams xReadGroupParams,
Map<String,StreamEntryID> streams)
XREADGROUP GROUP group consumer [COUNT count] [BLOCK milliseconds] [NOACK] STREAMS key [key ...] id [id ...]
|
| Modifier and Type | Method and Description |
|---|---|
XReadGroupParams |
XReadGroupParams.block(int block) |
XReadGroupParams |
XReadGroupParams.count(int count) |
XReadGroupParams |
XReadGroupParams.noAck() |
static XReadGroupParams |
XReadGroupParams.xReadGroupParams() |
Copyright © 2024. All rights reserved.