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