public abstract class com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
         0: .line 42
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;

  public <T> void onStart(com.netflix.hystrix.HystrixInvokable<T>);
    descriptor: (Lcom/netflix/hystrix/HystrixInvokable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
         0: .line 53
            return
        end local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixInvokable<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixInvokable<TT;>;)V
    MethodParameters:
                 Name  Flags
      commandInstance  

  public <T> T onEmit(com.netflix.hystrix.HystrixInvokable<T>, );
    descriptor: (Lcom/netflix/hystrix/HystrixInvokable;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        start local 2 // java.lang.Object value
         0: .line 64
            aload 2 /* value */
            areturn
        end local 2 // java.lang.Object value
        end local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixInvokable<TT;>;
            0    1     2            value  TT;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixInvokable<TT;>;TT;)TT;
    MethodParameters:
                 Name  Flags
      commandInstance  
      value            

  public <T> java.lang.Exception onError(com.netflix.hystrix.HystrixInvokable<T>, com.netflix.hystrix.exception.HystrixRuntimeException$FailureType, java.lang.Exception);
    descriptor: (Lcom/netflix/hystrix/HystrixInvokable;Lcom/netflix/hystrix/exception/HystrixRuntimeException$FailureType;Ljava/lang/Exception;)Ljava/lang/Exception;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=4, args_size=4
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        start local 2 // com.netflix.hystrix.exception.HystrixRuntimeException$FailureType failureType
        start local 3 // java.lang.Exception e
         0: .line 77
            aload 3 /* e */
            areturn
        end local 3 // java.lang.Exception e
        end local 2 // com.netflix.hystrix.exception.HystrixRuntimeException$FailureType failureType
        end local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixInvokable<TT;>;
            0    1     2      failureType  Lcom/netflix/hystrix/exception/HystrixRuntimeException$FailureType;
            0    1     3                e  Ljava/lang/Exception;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixInvokable<TT;>;Lcom/netflix/hystrix/exception/HystrixRuntimeException$FailureType;Ljava/lang/Exception;)Ljava/lang/Exception;
    MethodParameters:
                 Name  Flags
      commandInstance  
      failureType      
      e                

  public <T> void onSuccess(com.netflix.hystrix.HystrixInvokable<T>);
    descriptor: (Lcom/netflix/hystrix/HystrixInvokable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
         0: .line 89
            return
        end local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixInvokable<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixInvokable<TT;>;)V
    MethodParameters:
                 Name  Flags
      commandInstance  

  public <T> void onThreadStart(com.netflix.hystrix.HystrixInvokable<T>);
    descriptor: (Lcom/netflix/hystrix/HystrixInvokable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
         0: .line 100
            return
        end local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixInvokable<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixInvokable<TT;>;)V
    MethodParameters:
                 Name  Flags
      commandInstance  

  public <T> void onThreadComplete(com.netflix.hystrix.HystrixInvokable<T>);
    descriptor: (Lcom/netflix/hystrix/HystrixInvokable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
         0: .line 113
            return
        end local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixInvokable<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixInvokable<TT;>;)V
    MethodParameters:
                 Name  Flags
      commandInstance  

  public <T> void onExecutionStart(com.netflix.hystrix.HystrixInvokable<T>);
    descriptor: (Lcom/netflix/hystrix/HystrixInvokable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
         0: .line 124
            return
        end local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixInvokable<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixInvokable<TT;>;)V
    MethodParameters:
                 Name  Flags
      commandInstance  

  public <T> T onExecutionEmit(com.netflix.hystrix.HystrixInvokable<T>, );
    descriptor: (Lcom/netflix/hystrix/HystrixInvokable;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        start local 2 // java.lang.Object value
         0: .line 135
            aload 2 /* value */
            areturn
        end local 2 // java.lang.Object value
        end local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixInvokable<TT;>;
            0    1     2            value  TT;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixInvokable<TT;>;TT;)TT;
    MethodParameters:
                 Name  Flags
      commandInstance  
      value            

  public <T> java.lang.Exception onExecutionError(com.netflix.hystrix.HystrixInvokable<T>, java.lang.Exception);
    descriptor: (Lcom/netflix/hystrix/HystrixInvokable;Ljava/lang/Exception;)Ljava/lang/Exception;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        start local 2 // java.lang.Exception e
         0: .line 147
            aload 2 /* e */
            areturn
        end local 2 // java.lang.Exception e
        end local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixInvokable<TT;>;
            0    1     2                e  Ljava/lang/Exception;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixInvokable<TT;>;Ljava/lang/Exception;)Ljava/lang/Exception;
    MethodParameters:
                 Name  Flags
      commandInstance  
      e                

  public <T> void onExecutionSuccess(com.netflix.hystrix.HystrixInvokable<T>);
    descriptor: (Lcom/netflix/hystrix/HystrixInvokable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
         0: .line 159
            return
        end local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixInvokable<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixInvokable<TT;>;)V
    MethodParameters:
                 Name  Flags
      commandInstance  

  public <T> void onFallbackStart(com.netflix.hystrix.HystrixInvokable<T>);
    descriptor: (Lcom/netflix/hystrix/HystrixInvokable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
         0: .line 170
            return
        end local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixInvokable<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixInvokable<TT;>;)V
    MethodParameters:
                 Name  Flags
      commandInstance  

  public <T> T onFallbackEmit(com.netflix.hystrix.HystrixInvokable<T>, );
    descriptor: (Lcom/netflix/hystrix/HystrixInvokable;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        start local 2 // java.lang.Object value
         0: .line 181
            aload 2 /* value */
            areturn
        end local 2 // java.lang.Object value
        end local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixInvokable<TT;>;
            0    1     2            value  TT;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixInvokable<TT;>;TT;)TT;
    MethodParameters:
                 Name  Flags
      commandInstance  
      value            

  public <T> java.lang.Exception onFallbackError(com.netflix.hystrix.HystrixInvokable<T>, java.lang.Exception);
    descriptor: (Lcom/netflix/hystrix/HystrixInvokable;Ljava/lang/Exception;)Ljava/lang/Exception;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        start local 2 // java.lang.Exception e
         0: .line 194
            aload 2 /* e */
            areturn
        end local 2 // java.lang.Exception e
        end local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixInvokable<TT;>;
            0    1     2                e  Ljava/lang/Exception;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixInvokable<TT;>;Ljava/lang/Exception;)Ljava/lang/Exception;
    MethodParameters:
                 Name  Flags
      commandInstance  
      e                

  public <T> void onFallbackSuccess(com.netflix.hystrix.HystrixInvokable<T>);
    descriptor: (Lcom/netflix/hystrix/HystrixInvokable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
         0: .line 206
            return
        end local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixInvokable<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixInvokable<TT;>;)V
    MethodParameters:
                 Name  Flags
      commandInstance  

  public <T> void onCacheHit(com.netflix.hystrix.HystrixInvokable<T>);
    descriptor: (Lcom/netflix/hystrix/HystrixInvokable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
         0: .line 217
            return
        end local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixInvokable<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixInvokable<TT;>;)V
    MethodParameters:
                 Name  Flags
      commandInstance  

  public <T> void onUnsubscribe(com.netflix.hystrix.HystrixInvokable<T>);
    descriptor: (Lcom/netflix/hystrix/HystrixInvokable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
         0: .line 228
            return
        end local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixInvokable<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixInvokable<TT;>;)V
    MethodParameters:
                 Name  Flags
      commandInstance  

  public <T> void onRunStart(com.netflix.hystrix.HystrixCommand<T>);
    descriptor: (Lcom/netflix/hystrix/HystrixCommand;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixCommand commandInstance
         0: .line 243
            return
        end local 1 // com.netflix.hystrix.HystrixCommand commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixCommand<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixCommand<TT;>;)V
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
                 Name  Flags
      commandInstance  

  public <T> void onRunStart(com.netflix.hystrix.HystrixInvokable<T>);
    descriptor: (Lcom/netflix/hystrix/HystrixInvokable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
         0: .line 258
            return
        end local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixInvokable<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixInvokable<TT;>;)V
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
                 Name  Flags
      commandInstance  

  public <T> T onRunSuccess(com.netflix.hystrix.HystrixCommand<T>, );
    descriptor: (Lcom/netflix/hystrix/HystrixCommand;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixCommand commandInstance
        start local 2 // java.lang.Object response
         0: .line 279
            aload 2 /* response */
            areturn
        end local 2 // java.lang.Object response
        end local 1 // com.netflix.hystrix.HystrixCommand commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixCommand<TT;>;
            0    1     2         response  TT;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixCommand<TT;>;TT;)TT;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
                 Name  Flags
      commandInstance  
      response         

  public <T> T onRunSuccess(com.netflix.hystrix.HystrixInvokable<T>, );
    descriptor: (Lcom/netflix/hystrix/HystrixInvokable;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        start local 2 // java.lang.Object response
         0: .line 301
            aload 2 /* response */
            areturn
        end local 2 // java.lang.Object response
        end local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixInvokable<TT;>;
            0    1     2         response  TT;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixInvokable<TT;>;TT;)TT;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
                 Name  Flags
      commandInstance  
      response         

  public <T> java.lang.Exception onRunError(com.netflix.hystrix.HystrixCommand<T>, java.lang.Exception);
    descriptor: (Lcom/netflix/hystrix/HystrixCommand;Ljava/lang/Exception;)Ljava/lang/Exception;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixCommand commandInstance
        start local 2 // java.lang.Exception e
         0: .line 320
            aload 2 /* e */
            areturn
        end local 2 // java.lang.Exception e
        end local 1 // com.netflix.hystrix.HystrixCommand commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixCommand<TT;>;
            0    1     2                e  Ljava/lang/Exception;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixCommand<TT;>;Ljava/lang/Exception;)Ljava/lang/Exception;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
                 Name  Flags
      commandInstance  
      e                

  public <T> java.lang.Exception onRunError(com.netflix.hystrix.HystrixInvokable<T>, java.lang.Exception);
    descriptor: (Lcom/netflix/hystrix/HystrixInvokable;Ljava/lang/Exception;)Ljava/lang/Exception;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        start local 2 // java.lang.Exception e
         0: .line 339
            aload 2 /* e */
            areturn
        end local 2 // java.lang.Exception e
        end local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixInvokable<TT;>;
            0    1     2                e  Ljava/lang/Exception;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixInvokable<TT;>;Ljava/lang/Exception;)Ljava/lang/Exception;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
                 Name  Flags
      commandInstance  
      e                

  public <T> void onFallbackStart(com.netflix.hystrix.HystrixCommand<T>);
    descriptor: (Lcom/netflix/hystrix/HystrixCommand;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixCommand commandInstance
         0: .line 355
            return
        end local 1 // com.netflix.hystrix.HystrixCommand commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixCommand<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixCommand<TT;>;)V
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
                 Name  Flags
      commandInstance  

  public <T> T onFallbackSuccess(com.netflix.hystrix.HystrixCommand<T>, );
    descriptor: (Lcom/netflix/hystrix/HystrixCommand;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixCommand commandInstance
        start local 2 // java.lang.Object fallbackResponse
         0: .line 374
            aload 2 /* fallbackResponse */
            areturn
        end local 2 // java.lang.Object fallbackResponse
        end local 1 // com.netflix.hystrix.HystrixCommand commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1   commandInstance  Lcom/netflix/hystrix/HystrixCommand<TT;>;
            0    1     2  fallbackResponse  TT;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixCommand<TT;>;TT;)TT;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
                  Name  Flags
      commandInstance   
      fallbackResponse  

  public <T> T onFallbackSuccess(com.netflix.hystrix.HystrixInvokable<T>, );
    descriptor: (Lcom/netflix/hystrix/HystrixInvokable;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        start local 2 // java.lang.Object fallbackResponse
         0: .line 394
            aload 2 /* fallbackResponse */
            areturn
        end local 2 // java.lang.Object fallbackResponse
        end local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1   commandInstance  Lcom/netflix/hystrix/HystrixInvokable<TT;>;
            0    1     2  fallbackResponse  TT;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixInvokable<TT;>;TT;)TT;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
                  Name  Flags
      commandInstance   
      fallbackResponse  

  public <T> java.lang.Exception onFallbackError(com.netflix.hystrix.HystrixCommand<T>, java.lang.Exception);
    descriptor: (Lcom/netflix/hystrix/HystrixCommand;Ljava/lang/Exception;)Ljava/lang/Exception;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixCommand commandInstance
        start local 2 // java.lang.Exception e
         0: .line 413
            aload 2 /* e */
            areturn
        end local 2 // java.lang.Exception e
        end local 1 // com.netflix.hystrix.HystrixCommand commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixCommand<TT;>;
            0    1     2                e  Ljava/lang/Exception;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixCommand<TT;>;Ljava/lang/Exception;)Ljava/lang/Exception;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
                 Name  Flags
      commandInstance  
      e                

  public <T> void onStart(com.netflix.hystrix.HystrixCommand<T>);
    descriptor: (Lcom/netflix/hystrix/HystrixCommand;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixCommand commandInstance
         0: .line 429
            return
        end local 1 // com.netflix.hystrix.HystrixCommand commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixCommand<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixCommand<TT;>;)V
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
                 Name  Flags
      commandInstance  

  public <T> T onComplete(com.netflix.hystrix.HystrixCommand<T>, );
    descriptor: (Lcom/netflix/hystrix/HystrixCommand;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixCommand commandInstance
        start local 2 // java.lang.Object response
         0: .line 450
            aload 2 /* response */
            areturn
        end local 2 // java.lang.Object response
        end local 1 // com.netflix.hystrix.HystrixCommand commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixCommand<TT;>;
            0    1     2         response  TT;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixCommand<TT;>;TT;)TT;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
                 Name  Flags
      commandInstance  
      response         

  public <T> T onComplete(com.netflix.hystrix.HystrixInvokable<T>, );
    descriptor: (Lcom/netflix/hystrix/HystrixInvokable;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        start local 2 // java.lang.Object response
         0: .line 472
            aload 2 /* response */
            areturn
        end local 2 // java.lang.Object response
        end local 1 // com.netflix.hystrix.HystrixInvokable commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixInvokable<TT;>;
            0    1     2         response  TT;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixInvokable<TT;>;TT;)TT;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
                 Name  Flags
      commandInstance  
      response         

  public <T> java.lang.Exception onError(com.netflix.hystrix.HystrixCommand<T>, com.netflix.hystrix.exception.HystrixRuntimeException$FailureType, java.lang.Exception);
    descriptor: (Lcom/netflix/hystrix/HystrixCommand;Lcom/netflix/hystrix/exception/HystrixRuntimeException$FailureType;Ljava/lang/Exception;)Ljava/lang/Exception;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=4, args_size=4
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixCommand commandInstance
        start local 2 // com.netflix.hystrix.exception.HystrixRuntimeException$FailureType failureType
        start local 3 // java.lang.Exception e
         0: .line 495
            aload 3 /* e */
            areturn
        end local 3 // java.lang.Exception e
        end local 2 // com.netflix.hystrix.exception.HystrixRuntimeException$FailureType failureType
        end local 1 // com.netflix.hystrix.HystrixCommand commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixCommand<TT;>;
            0    1     2      failureType  Lcom/netflix/hystrix/exception/HystrixRuntimeException$FailureType;
            0    1     3                e  Ljava/lang/Exception;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixCommand<TT;>;Lcom/netflix/hystrix/exception/HystrixRuntimeException$FailureType;Ljava/lang/Exception;)Ljava/lang/Exception;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
                 Name  Flags
      commandInstance  
      failureType      
      e                

  public <T> void onThreadStart(com.netflix.hystrix.HystrixCommand<T>);
    descriptor: (Lcom/netflix/hystrix/HystrixCommand;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixCommand commandInstance
         0: .line 511
            return
        end local 1 // com.netflix.hystrix.HystrixCommand commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixCommand<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixCommand<TT;>;)V
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
                 Name  Flags
      commandInstance  

  public <T> void onThreadComplete(com.netflix.hystrix.HystrixCommand<T>);
    descriptor: (Lcom/netflix/hystrix/HystrixCommand;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
        start local 1 // com.netflix.hystrix.HystrixCommand commandInstance
         0: .line 528
            return
        end local 1 // com.netflix.hystrix.HystrixCommand commandInstance
        end local 0 // com.netflix.hystrix.strategy.executionhook.HystrixCommandExecutionHook this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/netflix/hystrix/strategy/executionhook/HystrixCommandExecutionHook;
            0    1     1  commandInstance  Lcom/netflix/hystrix/HystrixCommand<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lcom/netflix/hystrix/HystrixCommand<TT;>;)V
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
                 Name  Flags
      commandInstance  
}
SourceFile: "HystrixCommandExecutionHook.java"
InnerClasses:
  public final FailureType = com.netflix.hystrix.exception.HystrixRuntimeException$FailureType of com.netflix.hystrix.exception.HystrixRuntimeException