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
During gossiping, messages are sent as bytes: Vec<u8>, hence they have to be encoded into that format.
The Vec<String> is broken down into bytes and sent over the wire. This can be even more flexible as we can have a codec, maybe cbor that encodes any data structure into bytes and decodes them on the other side. Simple and flexible.
The text was updated successfully, but these errors were encountered:
During gossiping, messages are sent as bytes:
Vec<u8>
, hence they have to be encoded into that format.The
Vec<String>
is broken down into bytes and sent over the wire. This can be even more flexible as we can have a codec, maybecbor
that encodes any data structure into bytes and decodes them on the other side. Simple and flexible.The text was updated successfully, but these errors were encountered: