OLD | NEW |
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_TASK_H_ | 5 #ifndef BASE_TASK_SCHEDULER_TASK_H_ |
6 #define BASE_TASK_SCHEDULER_TASK_H_ | 6 #define BASE_TASK_SCHEDULER_TASK_H_ |
7 | 7 |
8 #include "base/base_export.h" | 8 #include "base/base_export.h" |
9 #include "base/callback_forward.h" | 9 #include "base/callback.h" |
10 #include "base/location.h" | 10 #include "base/location.h" |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
13 #include "base/pending_task.h" | 13 #include "base/pending_task.h" |
14 #include "base/sequenced_task_runner.h" | 14 #include "base/sequenced_task_runner.h" |
15 #include "base/single_thread_task_runner.h" | 15 #include "base/single_thread_task_runner.h" |
16 #include "base/task_scheduler/task_traits.h" | 16 #include "base/task_scheduler/task_traits.h" |
17 #include "base/time/time.h" | 17 #include "base/time/time.h" |
18 | 18 |
19 namespace base { | 19 namespace base { |
20 namespace internal { | 20 namespace internal { |
21 | 21 |
22 // A task is a unit of work inside the task scheduler. Support for tracing and | 22 // A task is a unit of work inside the task scheduler. Support for tracing and |
23 // profiling inherited from PendingTask. | 23 // profiling inherited from PendingTask. |
24 struct BASE_EXPORT Task : public PendingTask { | 24 struct BASE_EXPORT Task : public PendingTask { |
25 // |posted_from| is the site the task was posted from. |task| is the closure | 25 // |posted_from| is the site the task was posted from. |task| is the closure |
26 // to run. |traits_in| is metadata about the task. |delay| is a delay that | 26 // to run. |traits_in| is metadata about the task. |delay| is a delay that |
27 // must expire before the Task runs. If |delay| is non-zero and the shutdown | 27 // must expire before the Task runs. If |delay| is non-zero and the shutdown |
28 // behavior in |traits| is BLOCK_SHUTDOWN, the shutdown behavior is | 28 // behavior in |traits| is BLOCK_SHUTDOWN, the shutdown behavior is |
29 // automatically adjusted to SKIP_ON_SHUTDOWN. | 29 // automatically adjusted to SKIP_ON_SHUTDOWN. |
30 Task(const tracked_objects::Location& posted_from, | 30 Task(const tracked_objects::Location& posted_from, |
31 const Closure& task, | 31 Closure task, |
32 const TaskTraits& traits, | 32 const TaskTraits& traits, |
33 TimeDelta delay); | 33 TimeDelta delay); |
34 ~Task(); | 34 ~Task(); |
35 | 35 |
36 // The TaskTraits of this task. | 36 // The TaskTraits of this task. |
37 const TaskTraits traits; | 37 const TaskTraits traits; |
38 | 38 |
39 // The delay that must expire before the task runs. | 39 // The delay that must expire before the task runs. |
40 const TimeDelta delay; | 40 const TimeDelta delay; |
41 | 41 |
(...skipping 18 matching lines...) Expand all Loading... |
60 private: | 60 private: |
61 // Disallow copies to make sure no unnecessary ref-bumps are incurred. Making | 61 // Disallow copies to make sure no unnecessary ref-bumps are incurred. Making |
62 // it move-only would be an option, but isn't necessary for now. | 62 // it move-only would be an option, but isn't necessary for now. |
63 DISALLOW_COPY_AND_ASSIGN(Task); | 63 DISALLOW_COPY_AND_ASSIGN(Task); |
64 }; | 64 }; |
65 | 65 |
66 } // namespace internal | 66 } // namespace internal |
67 } // namespace base | 67 } // namespace base |
68 | 68 |
69 #endif // BASE_TASK_SCHEDULER_TASK_H_ | 69 #endif // BASE_TASK_SCHEDULER_TASK_H_ |
OLD | NEW |