You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So in your .proto file, you can use these types to define fields:
message MyMessage {
optional Timestamp snapshot_time = 1;
}
Different programming languages will use their own native representation for these types in the generated code. For languages that haven't support these types yet, they can just generate these as normal message fields.
…#169)
Previously when decoding varints, the value was not correctly decoded
from wire format to protobuf format. Consequently when signed ints which
are encoded on the wire using ZigZag format, the values returned are not
correct. This commit updates the decoder to ensure all values are
transformed from wire format to protobuf format, and includes a couple
of unit tests to validate the expected behaviour.
Addition of a small set of standard types for representation of time.Who can do an example?
The text was updated successfully, but these errors were encountered: