/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// XXX There are some corner cases where jobs can double-complete. Until // we track all these down we do a non-fatal assert in debug builds and // a runtime check to verify the queue is in the correct state.
NS_ASSERTION(!mJobList.IsEmpty(), "Job queue should contain the job that just completed.");
NS_ASSERTION(mJobList.SafeElementAt(0, nullptr) == aJob, "Job queue should contain the job that just completed."); if (NS_WARN_IF(mJobList.SafeElementAt(0, nullptr) != aJob)) { return;
}
for (RefPtr<ServiceWorkerJob>& job : mJobList) {
job->Cancel();
}
// Remove jobs that are queued but not started since they should never // run after being canceled. This means throwing away all jobs except // for the job at the front of the list. if (!mJobList.IsEmpty()) {
MOZ_ASSERT(mJobList[0]->GetState() == ServiceWorkerJob::State::Started);
mJobList.TruncateLength(1);
}
}
} // namespace mozilla::dom
¤ Dauer der Verarbeitung: 0.17 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.