python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Service compiling successfully, but message structs not generating - gRPC/Go
I am using gRPC/protobufs as the protocol to communicate between my client and server, both written in go. I'm able to run the command show below to generate the cards.pb.go (server) and cards_grpc.pb...
Sal
Votes: 0
Answers: 1
Receive protobuf encoded messages that can be partially written?
I am trying to send and receive protobuff encoded messages in GoLang over TCP, where the sender can cancel the write() halfway through the operation, and the receiver can correctly receive partial mes...
Pasindu Tennage
Votes: 0
Answers: 1
How to convert/assign a value with type *string to type *wrapperspb.StringValue when the *string value is nil?
I am trying to assign a value with type *string to a variable with type *wrapperspb.StringValue. However, when the *string is nil, it triggers an error (please see the comments in the snipped code to ...

Yusril Maulidan Raji
Votes: 0
Answers: 1
How to use `protoreflect.Message.Has`?
Given the following proto spec:
message A {
B b = 1;
}
message B {
string s = 1;
}
and an object a of type A, how do I check to see if a.b.s is set? More specifically, how do I create the FieldD...
Noel Yap
Votes: 0
Answers: 1