python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
gRPC server in background thread c++ [2]
My question overlaps with grpc Server in background thread c++ in many ways.
I want to run the synchronous gRPC server in a separate thread to run in the background.
This example is taken entirely fro...
Marat Idrisov
Votes: 0
Answers: 0
How to specify CA certificate to grpc_cli
I'm working on a gRPC service, and we're using a CA certificate we generated ourselves for our server. Unfortunately, I can't seem to figure out how to tell grpc_cli about that certificate, and so I g...
Michael Kohne
Votes: 0
Answers: 1
How to get message value in gRPC stream interceptor
I have implement a gRPC stream interceptor in Server like this:
// Service define:
// rpc searchProducts(google.protobuf.StringValue) returns (stream Product);
func (w *wrappedStream) RecvMsg(m inter...
Gomo
Votes: 0
Answers: 1
What happened if you delete a field on protobuf?
example:
message Foo {
...
string AccountToken = 3
string BusinessToken = 4
...
}
since those 2 fields want to be deprecated by the project owner, can I safely remove those 2 fields just by d...
Kokizzu
Votes: 0
Answers: 2