wang-jiahua commented on code in PR #10536:
URL: https://github.com/apache/rocketmq/pull/10536#discussion_r3447810271
##########
remoting/src/main/java/org/apache/rocketmq/remoting/protocol/header/PullMessageRequestHeader.java:
##########
@@ -246,6 +247,10 @@ public Long getQueueOffset() {
return queueOffset;
}
+ public void setQueueOffset(long queueOffset) {
+ this.queueOffset = queueOffset;
+ }
+
public void setQueueOffset(Long queueOffset) {
this.queueOffset = queueOffset;
}
Review Comment:
@/tmp/r3-npe.txt
##########
remoting/src/main/java/org/apache/rocketmq/remoting/protocol/header/PullMessageRequestHeader.java:
##########
@@ -270,6 +275,10 @@ public Long getCommitOffset() {
return commitOffset;
}
+ public void setCommitOffset(long commitOffset) {
+ this.commitOffset = commitOffset;
+ }
+
public void setCommitOffset(Long commitOffset) {
this.commitOffset = commitOffset;
}
Review Comment:
@/tmp/r3-npe.txt
##########
remoting/src/main/java/org/apache/rocketmq/remoting/protocol/header/PullMessageRequestHeader.java:
##########
@@ -278,6 +287,10 @@ public Long getSuspendTimeoutMillis() {
return suspendTimeoutMillis;
}
+ public void setSuspendTimeoutMillis(long suspendTimeoutMillis) {
+ this.suspendTimeoutMillis = suspendTimeoutMillis;
+ }
+
public void setSuspendTimeoutMillis(Long suspendTimeoutMillis) {
this.suspendTimeoutMillis = suspendTimeoutMillis;
}
Review Comment:
@/tmp/r3-npe.txt
##########
remoting/src/main/java/org/apache/rocketmq/remoting/protocol/header/PullMessageRequestHeader.java:
##########
@@ -294,6 +307,10 @@ public Long getSubVersion() {
return subVersion;
}
+ public void setSubVersion(long subVersion) {
+ this.subVersion = subVersion;
+ }
+
public void setSubVersion(Long subVersion) {
this.subVersion = subVersion;
}
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]