Class Notifications

    • Constructor Summary

      Constructors 
      Constructor Description
      Notifications()  
    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      void notify​(java.lang.String message, NotificationType eventType)
      Notify about an event.
      abstract void notify​(java.lang.String message, NotificationType eventType, java.lang.Throwable e)
      Notifies about an event including an exception.
      • Methods inherited from class java.lang.Object

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

      • notify

        public abstract void notify​(java.lang.String message,
                                    NotificationType eventType,
                                    java.lang.Throwable e)
        Notifies about an event including an exception.
        Parameters:
        message - The message to notify about.
        eventType - The type of event
        e - An exception related to the event, if not the event itself May be null for no exception.