LeviLamina
Loading...
Searching...
No Matches
IceAgentInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/cricket/IceRole.h"
7#include "mc/external/cricket/IceSwitchReason.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace cricket { class Connection; }
12// clang-format on
13
14namespace cricket {
15
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 // vIndex: 0
21 virtual ~IceAgentInterface() = default;
22
23 // vIndex: 1
24 virtual int64 GetLastPingSentMs() const = 0;
25
26 // vIndex: 2
27 virtual ::cricket::IceRole GetIceRole() const = 0;
28
29 // vIndex: 3
30 virtual void OnStartedPinging() = 0;
31
32 // vIndex: 4
33 virtual void UpdateConnectionStates() = 0;
34
35 // vIndex: 5
36 virtual void UpdateState() = 0;
37
38 // vIndex: 6
39 virtual void ForgetLearnedStateForConnections(::rtc::ArrayView<::cricket::Connection const* const>) = 0;
40
41 // vIndex: 7
42 virtual void SendPingRequest(::cricket::Connection const*) = 0;
43
44 // vIndex: 8
45 virtual void SwitchSelectedConnection(::cricket::Connection const*, ::cricket::IceSwitchReason) = 0;
46
47 // vIndex: 9
48 virtual bool PruneConnections(::rtc::ArrayView<::cricket::Connection const* const>) = 0;
49 // NOLINTEND
50
51public:
52 // virtual function thunks
53 // NOLINTBEGIN
54
55 // NOLINTEND
56};
57
58} // namespace cricket
Definition Connection.h:38
Definition IceAgentInterface.h:16
Definition _HeaderOutputPredefine.h:260