Index: net/base/prioritized_dispatcher.h |
=================================================================== |
--- net/base/prioritized_dispatcher.h (revision 218288) |
+++ net/base/prioritized_dispatcher.h (working copy) |
@@ -78,6 +78,10 @@ |
// it is queued in the dispatcher. |
Handle Add(Job* job, Priority priority); |
+ // Just like Add, except that it adds Job at the font of queue of jobs with |
+ // priorities of |priority|. |
+ Handle AddAtHead(Job* job, Priority priority); |
+ |
// Removes the job with |handle| from the queue. Invalidates |handle|. |
// Note: a Handle is valid iff the job is in the queue, i.e. has not Started. |
void Cancel(const Handle& handle); |
@@ -94,6 +98,11 @@ |
// Notifies the dispatcher that a running job has finished. Could start a job. |
void OnJobFinished(); |
+ // Tells the dispatcher not to start new jobs when old jobs complete or are |
+ // cancelled. Can't be undone. Can be used to avoid starting new jobs during |
+ // cleanup. |
+ void Disable(); |
+ |
private: |
// Attempts to dispatch the job with |handle| at priority |priority| (might be |
// different than |handle.priority()|. Returns true if successful. If so |
@@ -109,6 +118,8 @@ |
// Total number of running jobs. |
size_t num_running_jobs_; |
+ bool disabled_; |
+ |
DISALLOW_COPY_AND_ASSIGN(PrioritizedDispatcher); |
}; |