Class ObservableEventReceiver<V>

    • Constructor Detail

      • ObservableEventReceiver

        public ObservableEventReceiver()
        The constructor.
    • Method Detail

      • onEvent

        public void onEvent​(ObservableEvent<V> e)
        Description copied from interface: EventListener
        This method is called if an event occurred.
        WARNING:
        Depending on the implementation of EventSource it may NOT be legal to add or remove listeners during the call of this method as this may lead to a dead-lock.
        Specified by:
        onEvent in interface EventListener<V>
        Parameters:
        e - is the event that notifies about something that happened.