Package-level declarations
Types
Link copied to clipboard
class GenericMapExtensionSerializer<K, V>(keySerializer: KSerializer<K>, valueSerializer: KSerializer<V>) : BaseMsgPackExtensionSerializer<GenericMap<K, V>>
A custom serializer for serializing GenericMap instances using the MsgPack format.
Properties
Functions
Link copied to clipboard
Decodes a given msgpack byte array into an object using the reified type's deserializer.
Decodes a given msgpack byte array into an object using the provided deserializer.
Link copied to clipboard
Encodes a given object into a msgpack byte array using the reified type's serializer.
Encodes a given object into a msgpack byte array using the provided serializer.
Link copied to clipboard
Convenience method to wrap a Map in a MsgPack-serializable GenericMap instance.