Interface EventHandler<V>

Type Parameters:
V - Type of event value
All Known Implementing Classes:
FlappingEventProvider
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface EventHandler<V>
Generic functional interface used for for event handlers.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    handle(V value)
    Handles an event based on implementation needs.
  • Method Details

    • handle

      void handle(V value)
      Handles an event based on implementation needs.
      Parameters:
      value - Event value