[grpc-io] Re: client StreamObserver is always getting messages in sequence

2022-02-09 Thread mayank kulshreshtha
> On Tuesday, February 8, 2022 at 10:15:11 PM UTC-8 mayank kulshreshtha > wrote: > >> I Created the managed channel with a thread pool executor. >> ManagedChannel channel = ManagedChannelBuilder.forAddress("localhost", >> 6565) >> .executor(Executo

[grpc-io] client StreamObserver is always getting messages in sequence

2022-02-08 Thread mayank kulshreshtha
I Created the managed channel with a thread pool executor. ManagedChannel channel = ManagedChannelBuilder.forAddress("localhost", 6565) .executor(Executors.newFixedThreadPool(7)) .usePlaintext() .build(); this.clientStub = StockQuoteProviderGrpc.newStub(channel); the expectation was that the mess