toolish - v0.2.5
    Preparing search index...

    Class AbstractEventAbstract

    Extend this class to model your own events with any needed data (and behavior).

    Index

    Constructors

    Properties

    Methods

    Constructors

    Properties

    handled: boolean = false

    EventHandlers can set this to true to stop all further event processing.

    Methods

    • Used by EventBus.submit to determine what event sources to process and in what order. This default implementation returns the class hierarchy from the current class upto AbstractEvent. This means that subclasses (more specific) get processed before superclasses (more generic). Override this to customize processing behavior for specific events.

      Returns Constructor<AbstractEvent>[]