You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Preload queue has size of maxPreload + 1 but only the first maxPreload requests get cancelled. The most recent request is always the last in queue so it doesn't get cancelled.
privatevoidcancelAll() {
for (inti = 0; i < maxPreload; i++) {
requestManager.clear(preloadTargetQueue.next(0, 0));
}
}
The text was updated successfully, but these errors were encountered:
Preload queue has size of
maxPreload + 1
but only the firstmaxPreload
requests get cancelled. The most recent request is always the last in queue so it doesn't get cancelled.The text was updated successfully, but these errors were encountered: