-
Notifications
You must be signed in to change notification settings - Fork 254
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
require for documentation around how backpressure works #612
Comments
I know that BackpressureManagingHandler may help controll the flow in write aspect,but how it works in read aspect? |
@jamesgorman2 would you please do me a favor? |
Hi cynthju, answers below
I didn't write this, so I'm going on my reading of it and my best understanding of TCP.
TcpServer<ByteBuf, ByteBuf> s = TcpServer.newServer()
.start(
newConnection ->
Math.random() < 0.5 ?
newConnection.addChannelHandlerLast("TestHandler",new THandler()).ignoreInput() :
newConnection.ignoreInput()
); |
I want to lean how backpressure works in RxNetty.
Could you please provide such documentation as you mentioned in FAQs?
I would appreciate it if you can help me
The text was updated successfully, but these errors were encountered: