Interface SimpleEventHandler

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 SimpleEventHandler
Generic functional interface for simple event handlers, which are event handlers without a parameter. Usually supposed to be called / triggered within SimpleEventProvider.dispatchSimpleEvents(Object)
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Handles a specific simple event based on implementation needs.
  • Method Details

    • handle

      void handle()
      Handles a specific simple event based on implementation needs. This method does not take any parameters and returns no value either. For more advanced event handling, use EventHandler.