Interface EventProcessor
- All Known Implementing Classes:
EventProcessorImpl
public interface EventProcessor
UI Events processor interface..
-
Method Summary
Modifier and TypeMethodDescriptionbooleanReturns true if there are events that should be processed.voidShould be called to process events.voidUsed to push event to event processor.
-
Method Details
-
processEvents
void processEvents()Should be called to process events. -
pushEvent
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.
-