Class NotifyingMonitor

    • Constructor Detail

      • NotifyingMonitor

        public NotifyingMonitor()
      • NotifyingMonitor

        public NotifyingMonitor​(java.lang.String task)
      • NotifyingMonitor

        public NotifyingMonitor​(java.lang.String task,
                                IListener[] listeners)
    • Method Detail

      • getTask

        public java.lang.String getTask()
      • hasListeners

        public boolean hasListeners()
        Description copied from interface: INotifier
        Returns true if one or more listeners are registered with this notifier, false otherwise.
        Specified by:
        hasListeners in interface INotifier
      • getListeners

        public IListener[] getListeners()
        Description copied from interface: INotifier
        Returns the listeners that are registered with this notifier.

        Depending on the implementation duplicate listeners may be contained in the returned array.

        Specified by:
        getListeners in interface INotifier
      • addListener

        public void addListener​(IListener listener)
        Description copied from interface: INotifier
        Adds a listener to this notifier.

        Depending on the implementation duplicate listeners may lead to duplicate event delivery or not. Implementors are encouraged to prevent events from being delivered more than once to the same listener,

        Specified by:
        addListener in interface INotifier
      • removeListener

        public void removeListener​(IListener listener)
        Description copied from interface: INotifier
        Removes a listener from this notifier.
        Specified by:
        removeListener in interface INotifier