|
15 | 15 | */ |
16 | 16 | package org.springframework.data.redis.connection.jedis; |
17 | 17 |
|
18 | | -import org.springframework.data.redis.connection.RedisStreamCommands; |
19 | 18 | import redis.clients.jedis.BuilderFactory; |
20 | 19 | import redis.clients.jedis.StreamEntryID; |
21 | 20 | import redis.clients.jedis.args.StreamDeletionPolicy; |
|
37 | 36 | import java.util.List; |
38 | 37 | import java.util.Map; |
39 | 38 | import java.util.stream.Collectors; |
40 | | - |
41 | 39 | import org.jspecify.annotations.Nullable; |
42 | 40 | import org.springframework.data.domain.Range; |
43 | | -import org.springframework.data.redis.connection.RedisStreamCommands.XAddOptions; |
44 | | -import org.springframework.data.redis.connection.RedisStreamCommands.XClaimOptions; |
45 | | -import org.springframework.data.redis.connection.RedisStreamCommands.XPendingOptions; |
46 | | -import org.springframework.data.redis.connection.RedisStreamCommands.XTrimOptions; |
47 | | -import org.springframework.data.redis.connection.RedisStreamCommands.TrimOptions; |
48 | | -import org.springframework.data.redis.connection.RedisStreamCommands.TrimOperator; |
49 | | -import org.springframework.data.redis.connection.RedisStreamCommands.TrimStrategy; |
50 | | -import org.springframework.data.redis.connection.RedisStreamCommands.MaxLenTrimStrategy; |
51 | | -import org.springframework.data.redis.connection.RedisStreamCommands.MinIdTrimStrategy; |
52 | | -import org.springframework.data.redis.connection.RedisStreamCommands.XDelOptions; |
53 | | -import org.springframework.data.redis.connection.RedisStreamCommands.StreamEntryDeletionResult; |
| 41 | +import org.springframework.data.redis.connection.RedisStreamCommands; |
| 42 | +import org.springframework.data.redis.connection.RedisStreamCommands.*; |
54 | 43 | import org.springframework.data.redis.connection.stream.ByteRecord; |
55 | 44 | import org.springframework.data.redis.connection.stream.Consumer; |
56 | 45 | import org.springframework.data.redis.connection.stream.PendingMessage; |
|
0 commit comments