| Package | Description |
|---|---|
| org.mule.runtime.extension.api.runtime.operation |
| Modifier and Type | Method and Description |
|---|---|
default void |
Interceptor.after(OperationContext operationContext,
Object result)
Executes after the execution of an operation is finished, regardless of it being successful or not.
|
default void |
Interceptor.before(OperationContext operationContext)
Executes before the operation is executed.
|
<T> T |
OperationExecutor.execute(OperationContext operationContext)
Executes the owning operation using the given
operationContext. |
default Throwable |
Interceptor.onError(OperationContext operationContext,
RetryRequest retryRequest,
Throwable exception)
Executes when the execution of an operation threw exception.
|
default void |
Interceptor.onSuccess(OperationContext operationContext,
Object result)
Executes when an operation was successfully executed.
|
Copyright © 2016 MuleSoft, Inc.. All rights reserved.