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.