Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(221)

Side by Side Diff: base/task_scheduler/scheduler_thread_pool_interface.h

Issue 1876363004: TaskScheduler [11] Support ExecutionMode::SINGLE_THREADED. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@8_delayed
Patch Set: all post tasks go through SchedulerThreadPool Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef BASE_TASK_SCHEDULER_SCHEDULER_THREAD_POOL_INTERFACE_H_ 5 #ifndef BASE_TASK_SCHEDULER_SCHEDULER_THREAD_POOL_INTERFACE_H_
6 #define BASE_TASK_SCHEDULER_SCHEDULER_THREAD_POOL_INTERFACE_H_ 6 #define BASE_TASK_SCHEDULER_SCHEDULER_THREAD_POOL_INTERFACE_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/base_export.h" 10 #include "base/base_export.h"
11 #include "base/memory/ref_counted.h" 11 #include "base/memory/ref_counted.h"
12 #include "base/task_scheduler/sequence.h" 12 #include "base/task_scheduler/sequence.h"
13 #include "base/task_scheduler/task.h" 13 #include "base/task_scheduler/task.h"
14 14
15 namespace base { 15 namespace base {
16 namespace internal { 16 namespace internal {
17 17
18 class SchedulerWorkerThread;
19
18 // Interface for a thread pool. 20 // Interface for a thread pool.
19 class BASE_EXPORT SchedulerThreadPoolInterface { 21 class BASE_EXPORT SchedulerThreadPoolInterface {
20 public: 22 public:
21 virtual ~SchedulerThreadPoolInterface() = default; 23 virtual ~SchedulerThreadPoolInterface() = default;
22 24
23 // Posts |task| to be executed by this thread pool as part of |sequence|. The 25 // Posts |task| to be executed as part of |sequence|. |task| will run on
24 // scheduler's TaskTracker must have allowed |task| to be posted before this 26 // |worker_thread| if specified; otherwise it can run on a any thread owned by
25 // is called. This must only be called after |task|'s delayed run time. 27 // this pool. The scheduler's TaskTracker must have allowed |task| to be
26 virtual void PostTaskWithSequenceNow(std::unique_ptr<Task> task, 28 // posted before this is called. This must only be called after |task|'s
27 scoped_refptr<Sequence> sequence) = 0; 29 // delayed run time.
30 virtual void PostTaskWithSequenceNow(
31 std::unique_ptr<Task> task,
32 scoped_refptr<Sequence> sequence,
33 SchedulerWorkerThread* worker_thread) = 0;
28 }; 34 };
29 35
30 } // namespace internal 36 } // namespace internal
31 } // namespace base 37 } // namespace base
32 38
33 #endif // BASE_TASK_SCHEDULER_SCHEDULER_THREAD_POOL_INTERFACE_H_ 39 #endif // BASE_TASK_SCHEDULER_SCHEDULER_THREAD_POOL_INTERFACE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698