Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

And, all we need is to transform and wrap these bytes.

For example,

  • int=42 will be transformed to [3, 42, 0, 0, 0], where 3 is a GridBinaryMarshaller#INT
  • "Test string" will be transformed to [9, 11, 0, 0, 0, 84, 101, 115, 116, 32, 115, 116, 114, 105, 110, 103], where 9 is a GridBinaryMarshaller#STRING

...