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