| // Copyright 2018 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef BASE_TASK_TASK_SCHEDULER_SCHEDULER_PARALLEL_TASK_RUNNER_H_ |
| #define BASE_TASK_TASK_SCHEDULER_SCHEDULER_PARALLEL_TASK_RUNNER_H_ |
| |
| #include "base/base_export.h" |
| #include "base/callback_forward.h" |
| #include "base/location.h" |
| #include "base/task/task_scheduler/scheduler_task_runner_delegate.h" |
| #include "base/task/task_traits.h" |
| #include "base/task_runner.h" |
| #include "base/time/time.h" |
| |
| namespace base { |
| namespace internal { |
| |
| // A task runner that runs tasks in parallel. |
| class BASE_EXPORT SchedulerParallelTaskRunner : public TaskRunner { |
| public: |
| // Constructs a SchedulerParallelTaskRunner which can be used to post tasks. |
| SchedulerParallelTaskRunner( |
| const TaskTraits& traits, |
| SchedulerTaskRunnerDelegate* scheduler_task_runner_delegate); |
| |
| // TaskRunner: |
| bool PostDelayedTask(const Location& from_here, |
| OnceClosure closure, |
| TimeDelta delay) override; |
| |
| bool RunsTasksInCurrentSequence() const override; |
| |
| private: |
| ~SchedulerParallelTaskRunner() override; |
| |
| const TaskTraits traits_; |
| SchedulerTaskRunnerDelegate* const scheduler_task_runner_delegate_; |
| |
| DISALLOW_COPY_AND_ASSIGN(SchedulerParallelTaskRunner); |
| }; |
| |
| } // namespace internal |
| } // namespace base |
| |
| #endif // BASE_TASK_TASK_SCHEDULER_SCHEDULER_PARALLEL_TASK_RUNNER_H_ |