Package org.jboss.as.controller.remote
Interface TransactionalProtocolClient.TransactionalOperationListener<T extends TransactionalProtocolClient.Operation>
- Type Parameters:
T- the operation type
- All Known Implementing Classes:
BlockingQueueOperationListener
- Enclosing interface:
- TransactionalProtocolClient
public static interface TransactionalProtocolClient.TransactionalOperationListener<T extends TransactionalProtocolClient.Operation>
The transactional operation listener.
-
Method Summary
Modifier and TypeMethodDescriptionvoidoperationComplete(T operation, OperationResponse result) Notification that an operation completed.voidoperationFailed(T operation, org.jboss.dmr.ModelNode result) Notification that an operation failed.voidNotification that an operation was prepared.
-
Method Details
-
operationPrepared
Notification that an operation was prepared.- Parameters:
prepared- the prepared operation
-
operationFailed
Notification that an operation failed.- Parameters:
operation- the operationresult- the operation result
-
operationComplete
Notification that an operation completed.- Parameters:
operation- the operationresult- the final result
-