Reputation: 75
I just want to invoke a grpc method and exit from the process, I don't need the response back to the client.
My use case is like.
AWS Lambda will invoke only invoke multiple grpc request and exit without waiting for the response
Upvotes: 1
Views: 2038
Reputation: 26464
gRPC on-the-wire does not support fire-and-forget RPCs. The client is free to ignore the results and the server can respond immediately before actually processing the request.
Upvotes: 2