Skip to content

Commit cfebbb2

Browse files
committed
Make Client#streamStats(String) public
1 parent 35c7569 commit cfebbb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/rabbitmq/stream/impl/Client.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1749,7 +1749,7 @@ List<FrameHandlerInfo> exchangeCommandVersions() {
17491749
}
17501750
}
17511751

1752-
StreamStatsResponse streamStats(String stream) {
1752+
public StreamStatsResponse streamStats(String stream) {
17531753
this.streamStatsCommandVersionsCheck.run();
17541754
if (stream == null) {
17551755
throw new IllegalArgumentException("stream must not be null");
@@ -2346,7 +2346,7 @@ public long getSequence() {
23462346
}
23472347
}
23482348

2349-
static class StreamStatsResponse extends Response {
2349+
public static class StreamStatsResponse extends Response {
23502350

23512351
private final Map<String, Long> info;
23522352

0 commit comments

Comments
 (0)