GrpcInvocationPayload<Q, R> constructor

GrpcInvocationPayload<Q, R>({
  1. required ServiceCall call,
  2. required Stream<Q> requests,
  3. required ServiceMethod<Q, R> method,
  4. required ServerStreamingInvoker<Q, R> invoker,
})

Creates a gRPC invocation payload.

Implementation

GrpcInvocationPayload({
  required this.call,
  required this.requests,
  required this.method,
  required this.invoker,
});