Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a Decoder that accepts custom TypeConverters #702

Merged
merged 1 commit into from
Feb 14, 2024
Merged

Commits on Feb 14, 2024

  1. Allow specifying custom converters in Decoder

    Add a new Decoder implementation, CustomDecoder, which allows users to specify custom
    type converters via its static factory method, create. To avoid duplicate code, introduce
    a new package private base class, AbstractRegistryDecoder, which the existing DefaultDecoder
    and CustomDecoder both extend. CustomDecoder will add the default factories used by
    DefaultDecoder as well, placing them after the custom ones so that they may be overridden
    and are only used as fallbacks.
    kilink committed Feb 14, 2024
    Configuration menu
    Copy the full SHA
    b7ebce5 View commit details
    Browse the repository at this point in the history