ParallelResult

data class ParallelResult<Input, Output>(val nodeName: String, val nodeInput: Input, val nodeResult: ParallelNodeExecutionResult<Output>)(source)

Represents the completed result of a parallel node execution.

This class encapsulates the final state of a node that was executed as part of a parallel execution strategy. It contains the node's name, the input that was provided to it, and the final execution result including both output and context.

Parameters

Input

The type of input that was provided to the node.

Output

The type of output produced by the node.

Constructors

Link copied to clipboard
constructor(nodeName: String, nodeInput: Input, nodeResult: ParallelNodeExecutionResult<Output>)

Properties

Link copied to clipboard

The input value that was provided to the node.

Link copied to clipboard

The name of the node that was executed.

Link copied to clipboard

The final execution result containing both output and context.