Note: I am completely new to working with different cpu architectures and working with C / gcc I am trying to create an application written in plain C, which re
I have a proto definition with nested classes syntax = "proto3"; option java_package = "com.spot.proto.v1.config"; package v1config; // ClusterConfig proto i
Similar to the example at: https://developers.google.com/protocol-buffers/docs/proto#extensions Suppose I have a proto like: import "google/protobuf/descriptor.
I have not found support of the C language on grpc.io. Are there any "unofficial" libraries supporting gRPC in C? My whole project is in C. I'm seeing a few opt
I have the following function waitForInput that listens for TCP input, after the connection has been created and that one has been assigned to the client struct
I am trying to convert Protobuf *_struct.Struct to map[string]interface{} what is the right way to do it? func convertToMap(input *_struct.Str
I just started using Bazel a couple days ago in hopes of something better than CMake. I have a small library that contains only protobuf definitions in its own
I am trying to generate C# code using .proto file, but getting error import google/protobuf/timestamp.proto was not found or had errors. windows syntax = "proto
I have project Protobuf.Shared which contains shared proto files. This project is packed into NuGet package. Project structure: - .nuspec - proto - shared.prot
Looking for a library or algorithm that implements serialization of a message in protobuf format with schema version which retrieved from conf
The first enum value needs to be 0 in protobuf, but this does some trouble in a dropdown component of Primeng. Is there a way to set the first enum value to 1 ?
I'm adding warnings (and treating them as errors) to my C++ project which uses CMake for builds. Initially I used target_compile_options. But as I've added more
I'm very used to protobuf, and the .proto files, I think it is such an amazing way of holding contracts between applications. gRPC takes this to another level,
I'm developing the API for the application using protobuf and grpc. I need to send the data with the arbitrary size. Sometimes it is small, sometimes huge. For
I want to know how to install protoBuf in MacBook Pro in Apple M1 chip. Anyone known the solution?
I want to use an Infinispan cache with a PROTOSTREAM marshaller in my app running on Wildfly 26.0.1. I found the following post on StackOverflow, where both @My
I have a Go project where I'm using Zap structured logging to log the contents of structs. That's how I initialise the logger: zapLog, err := zap.NewProductionC
I was working in a microservice to create subscriptions in Stripe. One of the fields is listed as a float64 where I set it up as a float in the .proto file. Thi
I'm building a transpiler and need to understand the protobuf/go scope lookup system. I've been trying to google the docs and finding no luck. Q: Is there a sha
Recently, grpc-go introduced the mustEmbedUnimplemented*** method. It is used for forward compatibility. In simple terms, I am unable to understand how it is he