bool containsEvent(String eventName, int tsMillis) { return _queue.any( (entry) => entry.eventName == eventName && entry.tsMillis == tsMillis, ); }