Re: [grpc-io] Re: Is it availble to do RPC requests from server to client with gRPC?

2018-11-01 Thread fsl5987
Josh Humphries, thank you very much for detailed answer! I am not familiar with go, but i think that i can get some ideas and concepts from your code. четверг, 1 ноября 2018 г., 20:04:51 UTC+5 пользователь Josh Humphries написал: > > On Thu, Nov 1, 2018 at 8:16 AM > wrote: > >> >> >> четверг,

Re: [grpc-io] Re: Is it availble to do RPC requests from server to client with gRPC?

2018-11-01 Thread Josh Humphries
On Thu, Nov 1, 2018 at 8:16 AM wrote: > > > четверг, 1 ноября 2018 г., 16:02:25 UTC+5 пользователь Ivan Penchev > написал: >> >> The only way to do this is, for the client first to contact the server. >> >> Then on the server you get an IServerStreamWriter, which gives you an >> option to steam

[grpc-io] Re: Is it availble to do RPC requests from server to client with gRPC?

2018-11-01 Thread fsl5987
четверг, 1 ноября 2018 г., 16:02:25 UTC+5 пользователь Ivan Penchev написал: > > The only way to do this is, for the client first to contact the server. > > Then on the server you get an IServerStreamWriter, which gives you an > option to steam to the client . > > The reason you can do it the

[grpc-io] Re: Is it availble to do RPC requests from server to client with gRPC?

2018-11-01 Thread Ivan Penchev
The only way to do this is, for the client first to contact the server. Then on the server you get an IServerStreamWriter, which gives you an option to steam to the client . The reason you can do it the other way is, that the server must know all the IP addresses to connect to :) On