LeviLamina
Loading...
Searching...
No Matches
ActiveIceControllerInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/cricket/IceMode.h"
7#include "mc/external/cricket/IceSwitchReason.h"
8#include "mc/external/cricket/NominationMode.h"
9
10// auto generated forward declare list
11// clang-format off
12namespace cricket { class Connection; }
13namespace cricket { struct IceConfig; }
14// clang-format on
15
16namespace cricket {
17
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 // vIndex: 0
23 virtual ~ActiveIceControllerInterface() = default;
24
25 // vIndex: 1
26 virtual void SetIceConfig(::cricket::IceConfig const&) = 0;
27
28 // vIndex: 2
29 virtual void OnConnectionAdded(::cricket::Connection const*) = 0;
30
31 // vIndex: 3
32 virtual void OnConnectionSwitched(::cricket::Connection const*) = 0;
33
34 // vIndex: 4
35 virtual void OnConnectionDestroyed(::cricket::Connection const*) = 0;
36
37 // vIndex: 5
38 virtual void OnConnectionPinged(::cricket::Connection const*) = 0;
39
40 // vIndex: 6
41 virtual void OnConnectionUpdated(::cricket::Connection const*) = 0;
42
43 // vIndex: 7
44 virtual bool
45 GetUseCandidateAttribute(::cricket::Connection const*, ::cricket::NominationMode, ::cricket::IceMode) const = 0;
46
47 // vIndex: 8
48 virtual void OnSortAndSwitchRequest(::cricket::IceSwitchReason) = 0;
49
50 // vIndex: 9
51 virtual void OnImmediateSortAndSwitchRequest(::cricket::IceSwitchReason) = 0;
52
53 // vIndex: 10
54 virtual bool OnImmediateSwitchRequest(::cricket::IceSwitchReason, ::cricket::Connection const*) = 0;
55
56 // vIndex: 11
57 virtual ::cricket::Connection const* FindNextPingableConnection() = 0;
58 // NOLINTEND
59
60public:
61 // virtual function thunks
62 // NOLINTBEGIN
63
64 // NOLINTEND
65};
66
67} // namespace cricket
Definition ActiveIceControllerInterface.h:18
Definition Connection.h:38
Definition IceConfig.h:10