wang-jiahua commented on code in PR #10536:
URL: https://github.com/apache/rocketmq/pull/10536#discussion_r3447810416


##########
remoting/src/main/java/org/apache/rocketmq/remoting/protocol/header/PullMessageResponseHeader.java:
##########
@@ -110,6 +111,10 @@ public Long getNextBeginOffset() {
         return nextBeginOffset;
     }
 
+    public void setNextBeginOffset(long nextBeginOffset) {
+        this.nextBeginOffset = nextBeginOffset;
+    }
+
     public void setNextBeginOffset(Long nextBeginOffset) {
         this.nextBeginOffset = nextBeginOffset;
     }

Review Comment:
   @/tmp/r3-npe.txt



##########
remoting/src/main/java/org/apache/rocketmq/remoting/protocol/header/PullMessageResponseHeader.java:
##########
@@ -118,6 +123,10 @@ public Long getMinOffset() {
         return minOffset;
     }
 
+    public void setMinOffset(long minOffset) {
+        this.minOffset = minOffset;
+    }
+
     public void setMinOffset(Long minOffset) {
         this.minOffset = minOffset;
     }

Review Comment:
   @/tmp/r3-npe.txt



##########
remoting/src/main/java/org/apache/rocketmq/remoting/protocol/header/PullMessageResponseHeader.java:
##########
@@ -126,6 +135,10 @@ public Long getMaxOffset() {
         return maxOffset;
     }
 
+    public void setMaxOffset(long maxOffset) {
+        this.maxOffset = maxOffset;
+    }
+
     public void setMaxOffset(Long maxOffset) {
         this.maxOffset = maxOffset;
     }

Review Comment:
   @/tmp/r3-npe.txt



##########
remoting/src/main/java/org/apache/rocketmq/remoting/protocol/header/PullMessageResponseHeader.java:
##########
@@ -134,6 +147,10 @@ public Long getSuggestWhichBrokerId() {
         return suggestWhichBrokerId;
     }
 
+    public void setSuggestWhichBrokerId(long suggestWhichBrokerId) {
+        this.suggestWhichBrokerId = suggestWhichBrokerId;
+    }
+
     public void setSuggestWhichBrokerId(Long suggestWhichBrokerId) {
         this.suggestWhichBrokerId = suggestWhichBrokerId;
     }

Review Comment:
   @/tmp/r3-npe.txt



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to