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
I have a custom encoding/decoding logic but would still like to take advantage of other fd4s/vulcan goodies. Currently, it is not very possible (aside from maybe using deprecated Codec.instance) to make your own Codec since it is sealed. Are there any issues you can foresee with custom implementations?
The text was updated successfully, but these errors were encountered:
The reason we deprecated Codec.instance is so that Codec can be changed to an algebraic data type as set out in #437 . Can you say a bit about your use case for this?
We had a use case for other instances of Codec (for types supported by the Avro spec: instant micros and local datetime millis) and we just created a PR for them.
I have a custom encoding/decoding logic but would still like to take advantage of other fd4s/vulcan goodies. Currently, it is not very possible (aside from maybe using deprecated
Codec.instance
) to make your ownCodec
since it issealed
. Are there any issues you can foresee with custom implementations?The text was updated successfully, but these errors were encountered: