all
I'm using Netty to implement a client program, which has to finish the handshaking process before it sends/receives data traffic from the server
To ensure the correctness of handshaking process, the server will send me a BARRIER message to indicate that all messages received before this BARRIER must be processed and answered before I process the messages after BARRIER,
Does netty provide any API to implement the requirement of this BARRIER?
Thank you
Best,