public interface SystemMessenger
Note: Adding functions to this interface will NOT be considered as breaking binary compatibility.
| Modifier and Type | Method and Description |
|---|---|
void |
send(Message message)
Sends message.
|
void |
sendError(String caption,
String explanation)
Sends error message without exception.
|
void |
sendError(String caption,
String explanation,
Map<String,String> exceptionDetails)
Sends error message with exception.
|
void |
sendError(String caption,
String explanation,
Throwable e)
Sends error message with exception.
|
void send(Message message)
message - message to sendvoid sendError(String caption, String explanation)
caption - caption of the errorexplanation - message with error explanationvoid sendError(String caption, String explanation, Throwable e)
caption - caption of the errorexplanation - message with error explanatione - errorCopyright © 2016. All rights reserved.