|
23 | 23 | import java.util.Map;
|
24 | 24 |
|
25 | 25 | import org.reactivestreams.Publisher;
|
26 |
| - |
27 | 26 | import org.springframework.data.domain.Range;
|
28 | 27 | import org.springframework.data.redis.connection.Limit;
|
29 | 28 | import org.springframework.data.redis.connection.RedisStreamCommands.XClaimOptions;
|
30 |
| -import org.springframework.data.redis.connection.stream.ByteBufferRecord; |
31 |
| -import org.springframework.data.redis.connection.stream.Consumer; |
32 |
| -import org.springframework.data.redis.connection.stream.MapRecord; |
33 |
| -import org.springframework.data.redis.connection.stream.ObjectRecord; |
34 |
| -import org.springframework.data.redis.connection.stream.PendingMessage; |
35 |
| -import org.springframework.data.redis.connection.stream.PendingMessages; |
36 |
| -import org.springframework.data.redis.connection.stream.PendingMessagesSummary; |
37 |
| -import org.springframework.data.redis.connection.stream.ReadOffset; |
| 29 | +import org.springframework.data.redis.connection.stream.*; |
38 | 30 | import org.springframework.data.redis.connection.stream.Record;
|
39 |
| -import org.springframework.data.redis.connection.stream.RecordId; |
40 | 31 | import org.springframework.data.redis.connection.stream.StreamInfo.XInfoConsumer;
|
41 | 32 | import org.springframework.data.redis.connection.stream.StreamInfo.XInfoGroup;
|
42 | 33 | import org.springframework.data.redis.connection.stream.StreamInfo.XInfoStream;
|
43 |
| -import org.springframework.data.redis.connection.stream.StreamOffset; |
44 |
| -import org.springframework.data.redis.connection.stream.StreamReadOptions; |
45 |
| -import org.springframework.data.redis.connection.stream.StreamRecords; |
46 | 34 | import org.springframework.data.redis.hash.HashMapper;
|
47 | 35 | import org.springframework.lang.Nullable;
|
48 | 36 | import org.springframework.util.Assert;
|
49 | 37 |
|
50 | 38 | /**
|
51 |
| - * Redis stream specific operations. |
| 39 | + * Reactive Redis operations for Stream Commands. |
52 | 40 | *
|
53 | 41 | * @author Mark Paluch
|
54 | 42 | * @author Christoph Strobl
|
|
0 commit comments