LeviLamina
Loading...
Searching...
No Matches
StreamScheduler.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/dcsctp/SendQueue.h"
7#include "mc/external/webrtc/StrongAlias.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace dcsctp { class StreamPriorityTag; }
12namespace webrtc { class Timestamp; }
13// clang-format on
14
15namespace dcsctp {
16
18public:
19 // StreamScheduler inner types declare
20 // clang-format off
21 class Stream;
22 class VirtualTime;
23 // clang-format on
24
25 // StreamScheduler inner types define
26 class Stream {
27 public:
28 // member functions
29 // NOLINTBEGIN
30 MCAPI ::dcsctp::StreamScheduler::VirtualTime CalculateFinishTime(uint64) const;
31
32 MCAPI void ForceMarkInactive();
33
34 MCAPI void MakeActive(uint64);
35
36 MCAPI void MakeInactive();
37
38 MCAPI void MaybeMakeActive();
39
40 MCAPI ::std::optional<::dcsctp::SendQueue::DataToSend> Produce(::webrtc::Timestamp, uint64);
41
43 // NOLINTEND
44 };
45
46 class VirtualTime {};
47
48public:
49 // member functions
50 // NOLINTBEGIN
51 MCAPI ::std::optional<::dcsctp::SendQueue::DataToSend> Produce(::webrtc::Timestamp, uint64);
52
53 MCAPI ~StreamScheduler();
54 // NOLINTEND
55
56public:
57 // destructor thunk
58 // NOLINTBEGIN
59 MCAPI void $dtor();
60 // NOLINTEND
61};
62
63} // namespace dcsctp
Definition StreamScheduler.h:26
Definition StreamScheduler.h:46
Definition StreamScheduler.h:17
Definition StrongAlias.h:8
Definition Timestamp.h:10