Class Extension

  • All Implemented Interfaces:

    
    public abstract class Extension
    
                        

    Abstract class that defines an Extension

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      boolean readyForEvent(@NonNull() Event event) Called before each Event is processed by any ExtensionListener owned by this Extension Should be overridden by any extension that wants to control its own Event flow on a per Event basis.
      final ExtensionApi getApi() This provides the services the extension will need.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • readyForEvent

         boolean readyForEvent(@NonNull() Event event)

        Called before each Event is processed by any ExtensionListener owned by this Extension Should be overridden by any extension that wants to control its own Event flow on a per Event basis.

        Parameters:
        event - Event that will be processed next
        Returns:

        boolean to denote if event processing should continue for this `Extension`