[protobuf] how can i receive stream data per milliseconds in protobuf?

2019-08-14 Thread majid aminian
*i have GPS sensor and that sensor send 1000 packet per second i would like to receive data in 100 milliseconds, * *but in default protobuf receive data per second, so how can i receive stream data per milliseconds in protobuf?* -- You received this message because you are subscribed to the Goo

[protobuf] Can you use protobuf to map json messages formatted differently to the same buffer?

2019-08-14 Thread Ma N
let's say 2 jsons have different keys but map to the same key in the buffer, for example: { keyA:1, keyB:5 } should map to a buffer containing: { quantity: 1, cost: 5 } and: { keyC:5, keyD:10 } should map to a buffer containing: { quantity: 5, cost: 10 } as you can see both "KeyA", "K

[protobuf] Re: cross compilation of protobuf for multiarch

2019-08-14 Thread kirin wang
It seems there is no official docker image for cross compiling , in `C++ Installation [1]` doc there are some guide may help [1] https://github.com/protocolbuffers/protobuf/blob/master/src/README.md#c-installation---unix 在 2019年8月13日星期二 UTC+8下午5:34:52,Ravi Salamani写道: > > I need informat