Interface EventNotification<L>

  • Type Parameters:
    L - type of object that receives notifications (i.e. a "listener" type)
    All Known Implementing Classes:
    BaseEvent, MediaPlayerEvent

    public interface EventNotification<L>
    Specification for a event that notifies another component.
    • Method Detail

      • notify

        void notify​(L listener)
        Notify a component acting as an event listener of some type.
        Parameters:
        listener - event listener to notify