call method

Stream<Res> call(
  1. ServiceCall call,
  2. Stream<Req> requests,
  3. RpcContext context
)

Calls the handler function.

Implementation

Stream<Res> call(ServiceCall call, Stream<Req> requests, RpcContext context) {
  return _handler(call, requests, context);
}