-
Notifications
You must be signed in to change notification settings - Fork 29
add readCall/writeReply in V1.0 #58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
Current coverage is
|
协议文档能发一下吗? |
好的,竟然之前没看到有这个功能。 |
label = this.byteBuffer.getChar(this.byteBuffer.position()); | ||
} | ||
// skip 'z' char | ||
this.byteBuffer.position(this.byteBuffer.position() + 1); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this.byteBuffer.skip(1) 即可
var result = {header: header, arguments: args}; | ||
|
||
while (this.byteBuffer.getChar(this.byteBuffer.position()) === 'H') { | ||
this.byteBuffer.position(this.byteBuffer.position() + 1); //skip 'H' char |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this.byteBuffer.skip(1)
@tangzhi can you rebase from master and run ci test again? |
在v1协议下增加了 readCall/writeReply等相关方法及测试代码。