[grpc-io] gRPC Connections Managment golang

2023-09-09 Thread Kareem Adem
Hi Buddies, I am new to gRPC, and I have Server and multiple clients. So I want to Store Each Client Connection in order to be able to send messages to specific Client. -- You received this message because you are subscribed to the Google Groups "grpc.io" group. To unsubscribe from this group

[grpc-io] Re: (python) How to spawn blocking CPU bound tasks

2023-09-09 Thread Joshua Benz
async def my_rpc(self, request, context) ... ... ... stream: AsyncIterable[Response2] = self.runner.get_stream() res = list() try: loop = asyncio.get_running_loop() with ProcessPoolExecutor() as executor: async for msg in stream:

[grpc-io] C++ gRPC with PKCS#11

2023-09-09 Thread GoogleUser Zak
Hi, I am looking for a GRPC library implementation/version where a C++ gRPC client, namely CreateChannel(), can refer to the mTLS private key using PKCS#11 URI, and therefore the private key doesn't need to be read in the user space, and will stay in the HSM secure memory. Is there a way to