NodeExecutionCompletedEvent

data class NodeExecutionCompletedEvent(val runId: String, val nodeName: String, val input: String, val output: String, val timestamp: Long = Clock.System.now().toEpochMilliseconds()) : DefinedFeatureEvent(source)

Represents an event indicating the completion of a node's execution within an AI agent.

This event is triggered when a specific processing node, identified by its name, concludes its execution. It encapsulates details about the node's name, the input it operated on, and the output it produced.

Constructors

Link copied to clipboard
constructor(runId: String, nodeName: String, input: String, output: String, timestamp: Long = Clock.System.now().toEpochMilliseconds())

Properties

Link copied to clipboard

The input data provided to the node;

Link copied to clipboard
open override val messageType: FeatureMessage.Type

Specifies the type of the feature message for this event.

Link copied to clipboard

The name of the node that finished execution;

Link copied to clipboard

The output generated by the node;

Link copied to clipboard
Link copied to clipboard
open override val timestamp: Long

The timestamp of the event, in milliseconds since the Unix epoch.