Interface EventAction<T extends EventArgs>

Type Parameters:
T -
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 EventAction<T extends EventArgs>
Handles the invokation of an event. An EventAction is just an C#-like action which takes an EventArgs as a value.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    invoke(Object sender, T e)
     
  • Method Details

    • invoke

      void invoke(Object sender, T e)