Interface IExecutor

  • All Known Implementing Classes:
    AdaptableExecutor, Executor

    public interface IExecutor
    Interface that defines the main entry points of EVM based execution.
    • Method Detail

      • startExecution

        void startExecution​(java.lang.String transactionID)
        Signals the beginning of the execution,It receives the transaction ID as a parameter
        Parameters:
        transactionID -
      • endExecution

        void endExecution​(java.lang.String transactionID)
        Signals the end of the execution,It receives the transaction ID as a parameter
        Parameters:
        transactionID -
      • getContext

        Context getContext()
        Returns the Context of the executor. The return value should never be null.