Class | Description |
---|---|
ExtendedTypeHeader |
Header of the extended types
|
MessagePack |
This class has MessagePack prefix code definitions and packer/unpacker factory methods.
|
MessagePack.Code |
The prefix code set of MessagePack.
|
MessagePack.Config |
Message packer/unpacker configuration object
|
MessagePack.ConfigBuilder |
Builder of the configuration object
|
MessagePacker |
Writer of message packed data.
|
MessageUnpacker |
MessageUnpacker lets an application read message-packed values from a data stream.
|
NonBlockingMessageUnpacker |
MessageUnpacker implementation that supports event-driven I/O, which
is necessary to implement an efficient RPC server that receives MessagePack data.
|
NumberUtil |
Utilities for numbers
|
NumberUtil.LongUtil | |
Preconditions |
Simple static methods to be called at the start of your own methods to verify
correct arguments and state.
|
Enum | Description |
---|---|
MessageFormat |
Describes the list of the message format types defined in the MessagePack specification.
|
Exception | Description |
---|---|
MessageFloatOverflowException |
This error is thrown when the user tries to read a value that has decimal component as byte, short, int and long.
|
MessageFormatException |
Thrown when the input message pack format is invalid
|
MessageIntegerOverflowException |
This error is thrown when the user tries to read an integer value
using a smaller types.
|
MessageOverflowException |
Created on 5/28/14.
|
MessagePackException |
A base class of all of the message pack exceptions.
|
MessageSizeException |
Thrown to indicate too large message size (e.g, larger than 2^31-1).
|
MessageStringCodingException |
Thrown to indicate an error when encoding/decoding a String value
|
MessageTypeException |
Thrown when a type mismatch error occurs
|