use of sugar.free.sightparser.applayer.messages.remote_control.DismissAlertMessage in project SightRemote by TebbeUbben.
the class AlertService method dismissAlert.
public void dismissAlert() {
DismissAlertMessage dismissAlertMessage = new DismissAlertMessage();
dismissAlertMessage.setAlertID(latestId);
new SingleMessageTaskRunner(serviceConnector, dismissAlertMessage).fetch(errorToastCallback);
Answers.getInstance().logCustom(new CustomEvent("Dismiss Alert"));
}
Aggregations