You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 18, 2024. It is now read-only.
Users could customize serialization in any purposed way.
Bridge calls the macro serialize_from_IO and serialize_to_IO in Host to serialize and deserialize. The two macros are predefined using MessagePack by default.
macroserialize_from_IO(type, io)
{{type}}.from_msgpack {{io}}
endmacroserialize_to_IO(object, io)
{{object}}.to_msgpack {{io}}
end
You can redefine those two macros to customize serialization process.