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
Current implementation relies on type hinting for pipeline builder initialization:
Pipeline.ofPayload relies on the provided Initializer signature, if none is provided it requires manual type hinting
Pipeline.ofSimple requires manual type hinting
Type hinting is not intuitive (many devs don't even know it exists, and to their credit scenarios where they are relevant are few and far between) and is subject to type erasure.
We could probably upgrade this by requiring direct type references instead, which we could then eventually use for runtime type checks.
The text was updated successfully, but these errors were encountered:
Current implementation relies on type hinting for pipeline builder initialization:
Pipeline.ofPayload
relies on the providedInitializer
signature, if none is provided it requires manual type hintingPipeline.ofSimple
requires manual type hintingType hinting is not intuitive (many devs don't even know it exists, and to their credit scenarios where they are relevant are few and far between) and is subject to type erasure.
We could probably upgrade this by requiring direct type references instead, which we could then eventually use for runtime type checks.
The text was updated successfully, but these errors were encountered: