- using _AsynchronousQueue instead of _SynchronousQueue

This commit is contained in:
denihs
2023-02-09 09:23:11 -04:00
parent 8dd9a83836
commit a7abdefdc1

View File

@@ -35,7 +35,7 @@ PollingObserveDriver = function (options) {
self._cursorDescription.options.pollingThrottleMs || POLLING_THROTTLE_MS /* ms */);
// XXX figure out if we still need a queue
self._taskQueue = new Meteor._SynchronousQueue();
self._taskQueue = new Meteor._AsynchronousQueue();
var listenersHandle = listenAll(
self._cursorDescription, function (notification) {