javaApiInterceptStepExecutionStarting
fun javaApiInterceptStepExecutionStarting(feature: AIAgentFeature<*, *>, handle: Interceptor<StepExecutionStartingContext>)(source)
Intercepts step execution starting event to perform actions when a plan step begins execution.
JVM-friendly overload that accepts an async interceptor.
Example (Java): pipeline.interceptStepExecutionStarting(feature, event -> { // Step execution started return java.util.concurrent.CompletableFuture.completedFuture(null); });