Example #1
0
 public override void OnGrab(GrabMessage grabMessage)
 {
     _proxy.SendNotification(BOOK_GRABBED_TITLE, grabMessage.Message, Settings);
 }
Example #2
0
        public override void OnGrab(GrabMessage grabMessage)
        {
            const string title = "Movie Grabbed";

            _proxy.SendNotification(title, grabMessage.Message, Settings);
        }
Example #3
0
        public override void OnGrab(string message)
        {
            const string title = "Episode Grabbed";

            _pushoverProxy.SendNotification(title, message, Settings.ApiKey, Settings.UserKey, (PushoverPriority)Settings.Priority, Settings.Sound);
        }
Example #4
0
 public override void OnHealthIssue(HealthCheck.HealthCheck healthCheck)
 {
     _proxy.SendNotification(HEALTH_ISSUE_TITLE, healthCheck.Message, Settings);
 }