addAll method

void addAll(
  1. List<TEvent> events
)

Adds all events to the events queue in the iteration order.

Implementation

void addAll(List<TEvent> events) => dataQueue.addAll(events);