Package org.jboss.as.controller.client
Interface OperationMessageHandler
-
public interface OperationMessageHandlerAn operation message handler for handling progress reports.- Author:
- David M. Lloyd
-
-
Field Summary
Fields Modifier and Type Field Description static OperationMessageHandlerDISCARDA noop operation message handler, which discards all received messages.static OperationMessageHandlerloggingAn operation message handler which logs to the current system log.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandleReport(MessageSeverity severity, String message)Handle an operation progress report.
-
-
-
Field Detail
-
logging
static final OperationMessageHandler logging
An operation message handler which logs to the current system log.
-
DISCARD
static final OperationMessageHandler DISCARD
A noop operation message handler, which discards all received messages.
-
-
Method Detail
-
handleReport
void handleReport(MessageSeverity severity, String message)
Handle an operation progress report.- Parameters:
severity- the severity of the messagemessage- the message
-
-