Interface ExecutionContext



  • @ProviderType
    public interface ExecutionContext
    The execution context for the method being executed.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.Throwable getFailure​()
      Returns the failure of the method execution
      java.lang.reflect.Method getMethod​()
      Returns the method being executed
      java.lang.Object[] getParameters​()
      Returns the parameter values being passed to the method
    • Method Detail

      • getMethod

        java.lang.reflect.Method getMethod​()
        Returns the method being executed
        Returns:
        the method
      • getParameters

        java.lang.Object[] getParameters​()
        Returns the parameter values being passed to the method
        Returns:
        the parameter values, as an array
      • getFailure

        java.lang.Throwable getFailure​()
        Returns the failure of the method execution
        Returns:
        the failure of the method execution