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