You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am confused by this line as below: int startIndexOfPartialMessage = message.offset + endIndex;
I think it should be int startIndexOfPartialMessage = endIndex+1 ,because message.offset and endIndex are both address in shareArray And the next partial message index should be endIndex+1 if exists.
why use this.offset as start point instead of this.offset+this.length
java-nio-server/src/main/java/com/jenkov/nioserver/Message.java
Lines 92 to 97 in 35fdd0f
The text was updated successfully, but these errors were encountered: