emitEvent method

  1. @protected
void emitEvent(
  1. EVENT event
)

Emit the event to the eventController to notify the subscribers of eventStream

Implementation

@protected
void emitEvent(EVENT event) {
  eventController.add(event);
}