Establish a bi-directional RPC protocol on top of a given channel. Bi-directional means to send
sends requests and notifications to the remote side as well as receiving requests and notifications from the remote side.
Clients can get a promise for a remote request result that will be either resolved or
rejected depending on the success of the request. Keeps track of outstanding requests and matches replies to the appropriate request
Currently, there is no timeout handling for long running requests implemented.
Establish a bi-directional RPC protocol on top of a given channel. Bi-directional means to send sends requests and notifications to the remote side as well as receiving requests and notifications from the remote side. Clients can get a promise for a remote request result that will be either resolved or rejected depending on the success of the request. Keeps track of outstanding requests and matches replies to the appropriate request Currently, there is no timeout handling for long running requests implemented.