[grpc-io] Re: gRPC streaming service

2017-01-04 Thread 'Carl Mastrangelo' via grpc.io
>From my understanding of the C-core and C++ wrapper for gRPC, it does not create threads; it borrows. You must provide your own threads to handle streaming messages. You can wait on multiple actions within a single thread. On Tuesday, January 3, 2017 at 4:56:02 PM UTC-8, song...@hotmail.com

[grpc-io] Re: grpc-java: Jetty ALPN/NPN has not been properly configured

2017-01-04 Thread Jorg Heymans
Indeed the issue I linked was closed because it was already fixed on master. Next netty version should have this fix. Thanks Jorg -- You received this message because you are subscribed to the Google Groups "grpc.io" group. To unsubscribe from this group and stop receiving emails from it,

[grpc-io] Re: gRPC streaming service

2017-01-04 Thread song1219
Interesting. What do you mean "it borrows"? gRPC protobuf compiler automatically generates the service routine/function for me. I just fill in my implementation/logic there. When a client request comes in this routine gets triggered. My code does not spawn any thread to call this service