Uses of Interface
pl.edu.icm.unity.types.Event

Packages that use Event
Package
Description
Events processing
  • Uses of Event in pl.edu.icm.unity.engine.api.event

    Methods in pl.edu.icm.unity.engine.api.event with parameters of type Event
    Modifier and Type
    Method
    Description
    void
    EventPublisher.fireEvent(Event event)
    Publish the event for further processing.
    void
    EventPublisherWithAuthz.fireEventWithAuthz(Event event)
    Invokes the event thru {@link EventPublisher.fireEvent(Event)}, however the caller is authorized with the highest privilege level.
    boolean
    EventListener.handleEvent(Event event)
    Called only on events of a proper category, for which isWanted returned true.
    boolean
    EventListener.isAsync(Event event)
    This method should return whether async processing is allowed.
    boolean
    EventListener.isWanted(Event event)
    This method should perform a fast filtering of uninteresting events.