Interface Listener<T>

Type Parameters:
T - type of the event the listener is interested in

public interface Listener<T>
Listener for events of the generic type
Author:
Andrea Vacondio
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    onEvent(T event)
    Notify the listener of the given event
  • Method Details

    • onEvent

      void onEvent(T event)
      Notify the listener of the given event