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
Currently, HystrixCommandExecutionHook exposes onXXX(HystrixInvokable<T> commandInstance) methods. Since HystrixInvokable is a marker interface, a cast is always required to write a hook that does anything.
If HystrixInvokableInfo<T> were used, then the common metadata for HystrixCommand/HystrixObservableCommand could be used in hook logic without a cast.
The text was updated successfully, but these errors were encountered:
Currently, HystrixCommandExecutionHook exposes
onXXX(HystrixInvokable<T> commandInstance)
methods. SinceHystrixInvokable
is a marker interface, a cast is always required to write a hook that does anything.If
HystrixInvokableInfo<T>
were used, then the common metadata forHystrixCommand
/HystrixObservableCommand
could be used in hook logic without a cast.The text was updated successfully, but these errors were encountered: