Skip to content

Commit cd612b2

Browse files
committed
docs: Add missing documents
1 parent afb0698 commit cd612b2

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

src/main/java/org/springframework/data/redis/connection/RedisStreamCommands.java

+6
Original file line numberDiff line numberDiff line change
@@ -922,11 +922,17 @@ public String getConsumerName() {
922922
return consumerName;
923923
}
924924

925+
/**
926+
* @return can be {@literal null}.
927+
*/
925928
@Nullable
926929
public Duration getIdle() {
927930
return idle;
928931
}
929932

933+
/**
934+
* @return can be {@literal null}.
935+
*/
930936
@Nullable
931937
public Long getIdleMillis() {
932938
if (idle == null) {

src/main/java/org/springframework/data/redis/core/DefaultStreamOperations.java

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
* @author Marcin Zielinski
5858
* @author John Blum
5959
* @author jinkshower
60+
* @author Jeonggyu Choi
6061
* @since 2.2
6162
*/
6263
class DefaultStreamOperations<K, HK, HV> extends AbstractOperations<K, Object> implements StreamOperations<K, HK, HV> {

src/main/java/org/springframework/data/redis/core/StreamOperations.java

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
* @author Marcin Zielinski
5656
* @author John Blum
5757
* @author jinkshower
58+
* @author Jeonggyu Choi
5859
* @since 2.2
5960
*/
6061
public interface StreamOperations<K, HK, HV> extends HashMapperProvider<HK, HV> {

0 commit comments

Comments
 (0)