ContinueNode

abstract class ContinueNode(val context: FlowContext, val workflow: Workflow, val input: JsonObject, val actions: List<Action>) : Node, Closeable

Abstract class for a ContinueNode in the workflow.

Constructors

Link copied to clipboard
constructor(context: FlowContext, workflow: Workflow, input: JsonObject, actions: List<Action>)

Properties

Link copied to clipboard

The list of actions to be performed by the ContinueNode.

Link copied to clipboard

The context of the flow.

Link copied to clipboard
val input: JsonObject

The input JSON object.

Link copied to clipboard

The workflow the connector is part of.

Functions

Link copied to clipboard
abstract fun asRequest(): Request

Converts the ContinueNode to a Request.

Link copied to clipboard
open override fun close()

Closes all closeable actions.

Link copied to clipboard
suspend fun next(): Node

Moves to the next node in the workflow.