Class LocalNotificationsServiceBase

    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      javafx.collections.ObservableList<Notification> getNotifications()
      An Observable List of Notifications, that can be used to add or remove notifications If the notification is marked as scheduled, it won't be added to the device
      protected abstract void scheduleNotification​(Notification notification)
      Used by the platform-dependent implementation to scheduleNotification the notification
      protected abstract void unscheduleNotification​(Notification notification)
      Used by the platform-dependent implementation to unscheduleNotification the notification
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • LocalNotificationsServiceBase

        public LocalNotificationsServiceBase()
    • Method Detail

      • getNotifications

        public final javafx.collections.ObservableList<Notification> getNotifications()
        An Observable List of Notifications, that can be used to add or remove notifications If the notification is marked as scheduled, it won't be added to the device
        Specified by:
        getNotifications in interface LocalNotificationsService
        Returns:
        ObservableList of Notification
      • scheduleNotification

        protected abstract void scheduleNotification​(Notification notification)
        Used by the platform-dependent implementation to scheduleNotification the notification
        Parameters:
        notification - to be scheduled
      • unscheduleNotification

        protected abstract void unscheduleNotification​(Notification notification)
        Used by the platform-dependent implementation to unscheduleNotification the notification
        Parameters:
        notification - to be unscheduled