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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidoperationComplete(T operation, OperationResponse result)Notification that an operation completed.voidoperationFailed(T operation, org.jboss.dmr.ModelNode result)Notification that an operation failed.voidoperationPrepared(TransactionalProtocolClient.PreparedOperation<T> prepared)Notification that an operation was prepared.
-
-
-
Method Detail
-
operationPrepared
void operationPrepared(TransactionalProtocolClient.PreparedOperation<T> prepared)
Notification that an operation was prepared.- Parameters:
prepared- the prepared operation
-
operationFailed
void operationFailed(T operation, org.jboss.dmr.ModelNode result)
Notification that an operation failed.- Parameters:
operation- the operationresult- the operation result
-
operationComplete
void operationComplete(T operation, OperationResponse result)
Notification that an operation completed.- Parameters:
operation- the operationresult- the final result
-
-