Interface EventProcessor

All Known Implementing Classes:
EventProcessorImpl

public interface EventProcessor
UI Events processor interface..
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Returns true if there are events that should be processed.
    void
    Should be called to process events.
    void
    Used to push event to event processor.
  • Method Details

    • processEvents

      void processEvents()
      Should be called to process events.
    • pushEvent

      void pushEvent(Event event)
      Used to push event to event processor.
      Parameters:
      event - event to push to event processor.
    • hasEvents

      boolean hasEvents()
      Returns true if there are events that should be processed.
      Returns:
      true if there are events that should be processed.