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