NodeExecutionCompletedEvent
constructor(eventId: String, executionInfo: AgentExecutionInfo, runId: String, nodeName: String, input: JsonElement?, output: JsonElement?, timestamp: Long = Clock.System.now().toEpochMilliseconds())(source)
constructor(runId: String, nodeName: String, input: String, output: String, timestamp: Long = Clock.System.now().toEpochMilliseconds())(source)
Deprecated
Use constructor with executionInfo parameter, and input and output parameters of type [JsonElement]
Replace with
NodeExecutionCompletedEvent(executionInfo, runId, nodeName, input, output, timestamp)Content copied to clipboard
Creates an instance of NodeExecutionCompletedEvent.
This constructor is deprecated and should be replaced with the constructor that accepts executionInfo parameter, and input and output parameters of type JsonElement.