Interface EventListener<T>

All Superinterfaces:
EventListener

public interface EventListener<T> extends EventListener
Author:
Jakub Bednar (bednar@github) (10/12/2018 09:37)
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    onEvent(T value)
    onEvent will be called with the new value.
  • Method Details

    • onEvent

      void onEvent(@Nonnull T value)
      onEvent will be called with the new value. It's guaranteed that the value will be non-null.
      Parameters:
      value - The value of the event.