Esempio n. 1
0
 private void SendReminderNotification(LaunchInfo newLaunchState)
 {
     OnLaunchNotification?.Invoke(this, new LaunchNotification(LaunchNotificationType.Reminder, _savedNextLaunchState, newLaunchState));
     _logger.Info("Reminder notification sent");
 }
Esempio n. 2
0
 private void SendNewTargetNotification(LaunchInfo newLaunchState)
 {
     OnLaunchNotification?.Invoke(this, new LaunchNotification(LaunchNotificationType.NewTarget, _savedNextLaunchState, newLaunchState));
     _logger.Info("New target notification sent");
 }
Esempio n. 3
0
 private void SendScrubNotification(LaunchInfo newLaunchState)
 {
     OnLaunchNotification?.Invoke(this, new LaunchNotification(LaunchNotificationType.Scrub, _savedNextLaunchState, newLaunchState));
     _logger.Info("Scrub notification sent");
 }