Module MaterialFX
Interface INotificationSystem
- All Known Implementing Classes:
AbstractMFXNotificationSystem,MFXNotificationCenterSystem,MFXNotificationSystem
public interface INotificationSystem
Defines the public API of every notification system.
-
Method Summary
Modifier and TypeMethodDescriptiondispose()Closes and disposes the notification system if not needed anymore.A notification system should be initialized to honor the behavior of a owner Window.publish(INotification notification) Method to send a new notification to be shown, it's up to an implementation to decide how to manage and show it.
-
Method Details
-
initOwner
A notification system should be initialized to honor the behavior of a owner Window. (for example if the owner closes that the notification system closes too) -
publish
Method to send a new notification to be shown, it's up to an implementation to decide how to manage and show it. -
dispose
INotificationSystem dispose()Closes and disposes the notification system if not needed anymore.
-