Hi,
Context :
For the Async design, we use "Next" API with completion queue and this blocking in nature until an event happens.
so the moment ok is returned either with true or false, the "Next" API gets unblocked.
My Understanding:
Underneath GRPC we have many layers and GRPC being the top most layer.
GRPC <-> HTTP/2 <-> Regular Network Stack (TCP <-> IP <-> Ethernet <-> Physical Wire)
(Please correct if any of this assumption is wrong)
Doubt:
When the description is "Next" API says "...data going to wire" and returning either true or false for "ok" variable, what exactly does the wire means ?
Is it after the GRPC layer or HTTP/2 layer or Physical wire itself or something else ?
Any insights would be helpful.
Thanks