Interface IStepListener


public interface IStepListener
Allow augmentation of the execution behavior.
  • Method Summary

    Modifier and Type
    Method
    Description
    default void
    Called after unblocking the component thread.
    default void
    Called after a step is completed, i.e., when the step method has been exited.
    default <T> void
    beforeBlock(jadex.future.Future<T> fut)
    Called before blocking the component thread.
    default void
    Called before a step is started, i.e., before the step method is called.
  • Method Details

    • beforeStep

      default void beforeStep()
      Called before a step is started, i.e., before the step method is called.
    • afterStep

      default void afterStep()
      Called after a step is completed, i.e., when the step method has been exited.
    • beforeBlock

      default <T> void beforeBlock(jadex.future.Future<T> fut)
      Called before blocking the component thread.
    • afterBlock

      default void afterBlock()
      Called after unblocking the component thread.