Generic Map Extension Serializer
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.
Parameters
K
The key type of the map.
V
The value type of the map.
Functions
Link copied to clipboard
Deserializes the given MsgPackExtension into a GenericMap instance.
Link copied to clipboard
Serializes the given GenericMap instance into a MsgPackExtension.