Interface EventHandler<TArgs>

Type Parameters:
TArgs - Argument of the event.

public interface EventHandler<TArgs>
A function that specifies what should happen when a specific event occurs.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    handle(TArgs args)
    This function will generally be called by internal events and not by the user of this library.
  • Method Details

    • handle

      void handle(TArgs args)
      This function will generally be called by internal events and not by the user of this library.
      Parameters:
      args - Argument of the event.