Greetings all !
I'm developing an open source project with gRPC (an others)
I wish to use asynchronous class between client and server, and I want to know the best way to do it. Even I've been searching, I've not found good answers; so here I'm asking to experienced people.
It is better to make the client asynchronous with streaming on the client / server reponse
or
directly using Server.ServerFututreStub.method and ListenableFuture ?
I rather prefer the second ona as my server emits only one response to the client y the gRPC calls, and can male it wait a while.
Thanks