Method | Description | |
---|---|---|
afterExecutionCancelled ( ezcWorkflowExecution $execution ) | Called after an execution has been cancelled. | |
afterExecutionEnded ( ezcWorkflowExecution $execution ) | Called after an execution has successfully ended. | |
afterExecutionResumed ( ezcWorkflowExecution $execution ) | Called after an execution has been resumed. | |
afterExecutionStarted ( ezcWorkflowExecution $execution ) | Called after an execution has been started. | |
afterExecutionSuspended ( ezcWorkflowExecution $execution ) | Called after an execution has been suspended. | |
afterNodeActivated ( ezcWorkflowExecution $execution, ezcWorkflowNode $node ) | Called after a node has been activated. | |
afterNodeExecuted ( ezcWorkflowExecution $execution, ezcWorkflowNode $node ) | Called after a node has been executed. | |
afterThreadEnded ( ezcWorkflowExecution $execution, integer $threadId ) | Called after a thread has ended. | |
afterThreadStarted ( ezcWorkflowExecution $execution, integer $threadId, integer $parentId, integer $numSiblings ) | Called after a new thread has been started. | |
afterVariableSet ( ezcWorkflowExecution $execution, string $variableName, mixed $value ) | Called after a variable has been set. | |
afterVariableUnset ( ezcWorkflowExecution $execution, string $variableName ) | Called after a variable has been unset. | |
beforeNodeActivated ( ezcWorkflowExecution $execution, ezcWorkflowNode $node ) : boolean | Called before a node is activated. | |
beforeVariableSet ( ezcWorkflowExecution $execution, string $variableName, mixed $value ) : mixed | Called before a variable is set. | |
beforeVariableUnset ( ezcWorkflowExecution $execution, string $variableName ) : boolean | Called before a variable is unset. |
public afterExecutionCancelled ( ezcWorkflowExecution $execution ) | ||
$execution | ezcWorkflowExecution |
public afterExecutionEnded ( ezcWorkflowExecution $execution ) | ||
$execution | ezcWorkflowExecution |
public afterExecutionResumed ( ezcWorkflowExecution $execution ) | ||
$execution | ezcWorkflowExecution |
public afterExecutionStarted ( ezcWorkflowExecution $execution ) | ||
$execution | ezcWorkflowExecution |
public afterExecutionSuspended ( ezcWorkflowExecution $execution ) | ||
$execution | ezcWorkflowExecution |
public afterNodeActivated ( ezcWorkflowExecution $execution, ezcWorkflowNode $node ) | ||
$execution | ezcWorkflowExecution | |
$node | ezcWorkflowNode |
public afterNodeExecuted ( ezcWorkflowExecution $execution, ezcWorkflowNode $node ) | ||
$execution | ezcWorkflowExecution | |
$node | ezcWorkflowNode |
public afterThreadEnded ( ezcWorkflowExecution $execution, integer $threadId ) | ||
$execution | ezcWorkflowExecution | |
$threadId | integer |
public afterVariableSet ( ezcWorkflowExecution $execution, string $variableName, mixed $value ) | ||
$execution | ezcWorkflowExecution | |
$variableName | string | |
$value | mixed |
public afterVariableUnset ( ezcWorkflowExecution $execution, string $variableName ) | ||
$execution | ezcWorkflowExecution | |
$variableName | string |
public beforeNodeActivated ( ezcWorkflowExecution $execution, ezcWorkflowNode $node ) : boolean | ||
$execution | ezcWorkflowExecution | |
$node | ezcWorkflowNode | |
return | boolean | true, when the node should be activated, false otherwise |
public beforeVariableUnset ( ezcWorkflowExecution $execution, string $variableName ) : boolean | ||
$execution | ezcWorkflowExecution | |
$variableName | string | |
return | boolean | true, when the variable should be unset, false otherwise |