Package org.jboss.as.protocol.mgmt
Interface ActiveOperation.CompletedCallback<T>
-
- Type Parameters:
T- the result type
- Enclosing interface:
- ActiveOperation<T,A>
public static interface ActiveOperation.CompletedCallback<T>A callback indicating when an operation is complete. This is not part of the ActiveOperation API itself, but rather is often provided by callers that trigger instantiation of an ActiveOperation in a process.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcancelled()The operation was cancelled before being able to complete.voidcompleted(T result)The operation completed successfully.voidfailed(Exception e)The operation failed.
-