Registry / serialization / msgpack-core

msgpack-core

JSON →
library0.9.12javamavenunverified

Core library for MessagePack serialization format, providing efficient binary serialization for Java.

<dependency> <groupId>org.msgpack</groupId> <artifactId>msgpack-core</artifactId> <version>0.9.12</version> </dependency>
INSTALL
IMPORT
SIG · MSGPACK-CORE
M
msgpack-core
serializationjavav0.9.12
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

MessagePack
org.msgpack.core.MessagePack

Pack an integer using MessagePack.

import org.msgpack.core.MessagePack; import org.msgpack.core.MessagePacker; import java.io.ByteArrayOutputStream; public class Example { public static void main(String[] args) throws Exception { ByteArrayOutputStream out = new ByteArrayOutputStream(); MessagePacker packer = MessagePack.newDefaultPacker(out); packer.packInt(42); packer.close(); System.out.println("Packed size: " + out.size()); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.9.12latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
7 hits · last 30 days
node
6
Amazon
1
Resources
msgpack-core — mvn dependency:get msgpack-core · libregistry