Hi,
I have a client calling a RPC on the server. The server will then trigger a long running process (could be minutes, could be hours).
Should I put the RPC call in the client into a thread, or should I put the long running task on the server into a thread, assuming that the client doesn't care about the result (we have handling for that already).
I just want to know the proper/de-facto way to do this when using gRPC.
Thanks!