| Package | Description |
|---|---|
| redis.clients.jedis | |
| redis.clients.jedis.commands |
This package contains the interfaces that contain methods representing Redis core commands.
|
| redis.clients.jedis.params |
This package contains the classes that represent optional parameters of core Redis commands.
|
| Modifier and Type | Method and Description |
|---|---|
Response<List<byte[]>> |
TransactionBase.xread(XReadParams xReadParams,
Map.Entry<byte[],byte[]>... streams) |
List<byte[]> |
Jedis.xread(XReadParams xReadParams,
Map.Entry<byte[],byte[]>... streams) |
CommandObject<List<byte[]>> |
CommandObjects.xread(XReadParams xReadParams,
Map.Entry<byte[],byte[]>... streams) |
List<byte[]> |
UnifiedJedis.xread(XReadParams xReadParams,
Map.Entry<byte[],byte[]>... streams) |
Response<List<byte[]>> |
MultiNodePipelineBase.xread(XReadParams xReadParams,
Map.Entry<byte[],byte[]>... streams) |
Response<List<byte[]>> |
Pipeline.xread(XReadParams xReadParams,
Map.Entry<byte[],byte[]>... streams) |
Response<List<Map.Entry<String,List<StreamEntry>>>> |
TransactionBase.xread(XReadParams xReadParams,
Map<String,StreamEntryID> streams) |
List<Map.Entry<String,List<StreamEntry>>> |
Jedis.xread(XReadParams xReadParams,
Map<String,StreamEntryID> streams) |
CommandObject<List<Map.Entry<String,List<StreamEntry>>>> |
CommandObjects.xread(XReadParams xReadParams,
Map<String,StreamEntryID> streams) |
List<Map.Entry<String,List<StreamEntry>>> |
UnifiedJedis.xread(XReadParams xReadParams,
Map<String,StreamEntryID> streams) |
Response<List<Map.Entry<String,List<StreamEntry>>>> |
MultiNodePipelineBase.xread(XReadParams xReadParams,
Map<String,StreamEntryID> streams) |
Response<List<Map.Entry<String,List<StreamEntry>>>> |
Pipeline.xread(XReadParams xReadParams,
Map<String,StreamEntryID> streams) |
| Modifier and Type | Method and Description |
|---|---|
Response<List<byte[]>> |
StreamPipelineBinaryCommands.xread(XReadParams xReadParams,
Map.Entry<byte[],byte[]>... streams) |
List<byte[]> |
StreamBinaryCommands.xread(XReadParams xReadParams,
Map.Entry<byte[],byte[]>... streams) |
Response<List<Map.Entry<String,List<StreamEntry>>>> |
StreamPipelineCommands.xread(XReadParams xReadParams,
Map<String,StreamEntryID> streams)
XREAD [COUNT count] [BLOCK milliseconds] STREAMS key [key ...] ID [ID ...]
|
List<Map.Entry<String,List<StreamEntry>>> |
StreamCommands.xread(XReadParams xReadParams,
Map<String,StreamEntryID> streams)
XREAD [COUNT count] [BLOCK milliseconds] STREAMS key [key ...] ID [ID ...]
|
| Modifier and Type | Method and Description |
|---|---|
XReadParams |
XReadParams.block(int block) |
XReadParams |
XReadParams.count(int count) |
static XReadParams |
XReadParams.xReadParams() |
Copyright © 2023. All rights reserved.