Interface | Description |
---|---|
ContextLogger |
ContextLogger extends the BaseLogger to allow logging with extended context information
|
FlowControl |
Control workflow execution behavior
|
IWorkflow |
IWorkflow is ...
|
StepExecutionContext |
StepExecutionContext is ...
|
StepNodeContext<NODE,STEP> |
Reports the current step and node context, where step is maintained as a stack
|
StepNodeContextListener<NODE,STEP> |
Listens to context changes, where context can contain a node or step, or overall context.
|
WorkflowExecutionItem |
WorkflowExecutionItem is an execution item representing an entire workflow.
|
WorkflowExecutionListener |
WorkflowExecutionListener is ...
|
WorkflowExecutionResult |
WorkflowExecutionResult contains a list of workflow item results, indexed by workflow step number, and
node names to failure messages.
|
WorkflowExecutor |
WorkflowExecutor is ...
|
WorkflowStatusResult |
Allow a custom status string and control behavior
|
WorkflowStrategy |
WorkflowStrategy interface performs the workflow execution and returns an ExecutionResult
|
Class | Description |
---|---|
BaseWorkflowStrategy |
BaseWorkflowStrategy is ...
|
FlowController |
record flow control
|
NodeDispatchedWorkflowExecutionItemImpl |
NodeDispatchedWorkflowExecutionItemImpl is ...
|
NodeFirstWorkflowStrategy |
NodeFirstWorkflowStrategy Iterates over the matched nodes first, so that each node executes the full workflow
sequentially
|
NodeRecorder |
NodeRecorder stores success/failure node list
|
ParallelWorkflowStrategy |
ParallelWorkflowStrategy dispatches all steps in parallel to all nodes they are configured to run
and waits for their completion before terminating.
|
StepContextWorkflowExecutionListener<NODE,STEP> |
Listens to step and node context changes, and maintains thread-local step+node context
|
StepFirstWorkflowStrategy |
StepFirstWorkflowStrategy iterates over the workflow steps and dispatches each one to all nodes matching the filter.
|
WorkflowEventLoggerListener |
Emits events to the logger for workflow step/node start and finish.
|
WorkflowExecutionItemImpl |
WorkflowExecutionItemImpl is ...
|
WorkflowExecutionListenerImpl |
WorkflowExecutionListenerImpl uses the
WorkflowExecutionListener methods to maintain workflow execution
context data while executing workflows, allowing the ContextLogger to have proper context. |
WorkflowExecutionService |
WorkflowExecutionService provides ability to execute workflows
|
WorkflowImpl |
WorkflowImpl is ...
|
Enum | Description |
---|---|
ControlBehavior |
Behavior that can be indicated by
FlowControl |