interceptNodeExecutionStarting

Intercepts node execution before it starts.

Parameters

handle

The handler that processes before-node events

Example:

pipeline.interceptNodeExecutionStarting(interceptContext) { eventContext ->
logger.info("Node ${eventContext.node.name} is about to execute with input: ${eventContext.input}")
}