Class ExecutionSummary


  • public class ExecutionSummary
    extends Object
    Holds core key details of an Action that is currently executing. This information is normally the limit of what the ActionTrackingService can use when filtering lists of actions.
    Author:
    Nick Burch
    • Constructor Detail

      • ExecutionSummary

        public ExecutionSummary​(String actionType,
                                String actionId,
                                int executionInstance)
    • Method Detail

      • getActionType

        public String getActionType()
        What kind of action is this?
        Returns:
        The action type, typically an executor bean name
      • getActionId

        public String getActionId()
        What is the id of the action?
        Returns:
        The action ID
      • getExecutionInstance

        public int getExecutionInstance()
        Which instance of the action is this? Every time you start an action, it gets a new instance ID, and this lets you tell the difference between two copies running in parallel.
        Returns:
        The instance ID