Interface AppEventHandler

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 AppEventHandler
An event listener API.

This API has been modeled after org.osgi.service.event.EventHandler to help working in non-OSGi environments.

Since:
2.0
Version:
1.0
Author:
matt
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Invoked to notify the handler of an event.
  • Method Details

    • handleEvent

      void handleEvent(AppEvent event)
      Invoked to notify the handler of an event.
      Parameters:
      event - the event that occurred