Lal Kishor
Results
2
comments of
Lal Kishor
Took me a while to figure it out: `val packer = MessagePack.newDefaultBufferPacker();` ` packer.packArrayHeader(3);` ` packer.packLong(value.input1);` ` packer.packInt(value.input2);` ` packer.packInt(value.input3);` `packer.toMessageBuffer().sliceAsByteBuffer();` This is how you can serialize a POJO with...
This may be a helpful start: [https://github.com/dotnet/orleans/pull/1174/commits/e579079e2bf0a41d5f32126b3b4f678b9f5ac2b0](url)