InvocationStage |
InvocationStage.andExceptionallyMakeStage(InvocationContext ctx,
org.infinispan.commands.VisitableCommand command,
InvocationExceptionFunction function) |
After the current stage completes exceptionally, invoke function and return its result.
|
InvocationStage |
SyncInvocationStage.andExceptionallyMakeStage(InvocationContext ctx,
org.infinispan.commands.VisitableCommand command,
InvocationExceptionFunction function) |
|
InvocationStage |
InvocationStage.andFinallyMakeStage(InvocationContext ctx,
org.infinispan.commands.VisitableCommand command,
InvocationFinallyAction action) |
After the current stage completes, invoke action.
|
InvocationStage |
SyncInvocationStage.andFinallyMakeStage(InvocationContext ctx,
org.infinispan.commands.VisitableCommand command,
InvocationFinallyAction action) |
|
InvocationStage |
InvocationStage.andHandleMakeStage(InvocationContext ctx,
org.infinispan.commands.VisitableCommand command,
InvocationFinallyFunction function) |
After the current stage completes, invoke function and return its result.
|
InvocationStage |
SyncInvocationStage.andHandleMakeStage(InvocationContext ctx,
org.infinispan.commands.VisitableCommand command,
InvocationFinallyFunction function) |
|
static InvocationStage |
BaseAsyncInterceptor.asyncValue(java.util.concurrent.CompletionStage<?> valueFuture) |
Suspend the invocation until valueFuture completes, then return its result without running
the remaining interceptors.
|
static InvocationStage |
InvocationStage.completedNullStage() |
|
static InvocationStage |
BaseAsyncInterceptor.makeStage(java.lang.Object rv) |
|
static InvocationStage |
InvocationStage.makeStage(java.lang.Object maybeStage) |
If maybeStage is not an InvocationStage, wrap it, otherwise cast it to an InvocationStage.
|
InvocationStage |
InvocationStage.thenAcceptMakeStage(InvocationContext ctx,
org.infinispan.commands.VisitableCommand command,
InvocationSuccessAction action) |
After the current stage completes successfully, invoke action.
|
InvocationStage |
SyncInvocationStage.thenAcceptMakeStage(InvocationContext ctx,
org.infinispan.commands.VisitableCommand command,
InvocationSuccessAction action) |
|
InvocationStage |
InvocationStage.thenApplyMakeStage(InvocationContext ctx,
org.infinispan.commands.VisitableCommand command,
InvocationSuccessFunction function) |
After the current stage completes successfully, invoke function and return its result.
|
InvocationStage |
SyncInvocationStage.thenApplyMakeStage(InvocationContext ctx,
org.infinispan.commands.VisitableCommand command,
InvocationSuccessFunction function) |
After the current stage completes successfully, invoke function and return its result.
|