This is a simple Java library for handling MessagePack data. It doesn’t do any object mapping, but maps to special
objects representing MessagePack types. To build, use command
./gradlew build
.
For most cases you might be better off using the official library org.msgpack:msgpack
, but I found that I needed something
that generically represents the internal structure of the data. With this MsgPack implementation you can examine MessagePack
encoded data without beforehand knowing what it looks like or represents.