LeviLamina
Loading...
Searching...
No Matches
TaskQueueFactory.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace webrtc { class TaskQueueBase; }
8namespace webrtc { struct TaskQueueDeleter; }
9// clang-format on
10
11namespace webrtc {
12
14public:
15 // TaskQueueFactory inner types define
16 enum class Priority : int {
17 Normal = 0,
18 High = 1,
19 Low = 2,
20 };
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 // vIndex: 0
26 virtual ~TaskQueueFactory() = default;
27
28 // vIndex: 1
29 virtual ::std::unique_ptr<::webrtc::TaskQueueBase, ::webrtc::TaskQueueDeleter>
30 CreateTaskQueue(::std::string_view, ::webrtc::TaskQueueFactory::Priority) const = 0;
31 // NOLINTEND
32
33public:
34 // destructor thunk
35 // NOLINTBEGIN
36
37 // NOLINTEND
38
39public:
40 // virtual function thunks
41 // NOLINTBEGIN
42
43 // NOLINTEND
44};
45
46} // namespace webrtc
Definition TaskQueueFactory.h:13