Package 

Interface EngineTaskCommand

  • All Implemented Interfaces:
    io.holunda.camunda.taskpool.api.task.CamundaTaskEventType , io.holunda.camunda.taskpool.api.task.WithTaskId

    
    public interface EngineTaskCommand
     implements WithTaskId, CamundaTaskEventType
                        

    Task command received from the Camunda Engine.

    • Method Summary

      Modifier and Type Method Description
      abstract Integer getOrder() Used to order commands before sending in case multiple events are received from the engine for the same task in the same transaction.
      abstract String getId() Task id.
      abstract String getEventName() Event classification.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getOrder

         abstract Integer getOrder()

        Used to order commands before sending in case multiple events are received from the engine for the same task in the same transaction. Commands with lower order value are sent before commands with higher order value.