OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | |
3 * | |
4 * Use of this source code is governed by a BSD-style license | |
5 * that can be found in the LICENSE file in the root of the source | |
6 * tree. An additional intellectual property rights grant can be found | |
7 * in the file PATENTS. All contributing project authors may | |
8 * be found in the AUTHORS file in the root of the source tree. | |
9 */ | |
10 | |
11 #ifndef WEBRTC_BASE_SEQUENCED_TASK_CHECKER_IMPL_H_ | |
12 #define WEBRTC_BASE_SEQUENCED_TASK_CHECKER_IMPL_H_ | |
13 | |
14 #include "webrtc/base/task_queue.h" | |
15 #include "webrtc/base/thread_checker.h" | |
16 | |
17 namespace rtc { | |
18 | |
19 // Real implementation of SequencedTaskChecker, for use in debug mode, or | |
20 // for temporary use in release mode. | |
21 // | |
22 // Note: You should almost always use the SequencedTaskChecker class to get the | |
23 // right version for your build configuration. | |
24 class SequencedTaskCheckerImpl { | |
25 public: | |
26 SequencedTaskCheckerImpl(); | |
27 ~SequencedTaskCheckerImpl(); | |
28 | |
29 bool IsCurrent() const; | |
30 | |
31 // Changes the task queue or thread that is checked for in IsCurrent. This | |
32 // may be useful when an object may be created on one task queue / thread and | |
33 // then used exclusively on another thread. | |
34 void Detach(); | |
35 | |
36 private: | |
37 CriticalSection lock_; | |
tommi
2016/07/08 13:15:15
would like to avoid a lock if we at all can.
perkj_webrtc
2016/07/11 08:38:01
Acknowledged.
| |
38 ThreadChecker thread_checker_; | |
39 mutable bool attached_; | |
40 mutable TaskQueue* valid_queu_; | |
tommi
2016/07/08 13:15:15
queue
perkj_webrtc
2016/07/11 08:38:01
Done.
| |
41 }; | |
42 | |
43 } // namespace rtc | |
44 | |
45 #endif // WEBRTC_BASE_SEQUENCED_TASK_CHECKER_IMPL_H_ | |
OLD | NEW |