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
In the buildFinalResolvers method, we are assuming that if the
resolver method is returning SingleExecute<T>, MultiExecute<T>, or just T,
the T exactly matches the resolved input's data type. If the developer makes an error,
then the dependency Vajram execution will fail at runtime with ClassCastException. We need to add a validation
here which proactively fails if the data type mismatches.
The text was updated successfully, but these errors were encountered:
In the
buildFinalResolvers
method, we are assuming that if theresolver method is returning
SingleExecute<T>
,MultiExecute<T>
, or justT
,the
T
exactly matches the resolved input's data type. If the developer makes an error,then the dependency Vajram execution will fail at runtime with ClassCastException. We need to add a validation
here which proactively fails if the data type mismatches.
The text was updated successfully, but these errors were encountered: