LeviLamina
Loading...
Searching...
No Matches
ISignalingServiceConfigProvider.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/threading/Async.h"
7#include "mc/deps/core/utility/EnableNonOwnerReferences.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace Bedrock::Http { struct Url; }
12// clang-format on
13
15public:
16 // ISignalingServiceConfigProvider inner types declare
17 // clang-format off
18 struct Token;
19 // clang-format on
20
21 // ISignalingServiceConfigProvider inner types define
22 struct Token : public ::std::string {
23 public:
24 // member functions
25 // NOLINTBEGIN
26 MCNAPI ~Token();
27 // NOLINTEND
28
29 public:
30 // destructor thunk
31 // NOLINTBEGIN
32 MCNAPI void $dtor();
33 // NOLINTEND
34 };
35
36public:
37 // virtual functions
38 // NOLINTBEGIN
39 // vIndex: 0
40 virtual ~ISignalingServiceConfigProvider() /*override*/ = default;
41
42 // vIndex: 1
43 virtual ::Bedrock::Threading::Async<::Bedrock::Http::Url> getUrl() = 0;
44
45 // vIndex: 2
46 virtual ::Bedrock::Threading::Async<::Bedrock::Http::Url> getJsonRpcUrl() = 0;
47
48 // vIndex: 3
49 virtual ::Bedrock::Threading::Async<::ISignalingServiceConfigProvider::Token> getAuthToken() = 0;
50
51 // vIndex: 4
52 virtual void reset() = 0;
53 // NOLINTEND
54
55public:
56 // virtual function thunks
57 // NOLINTBEGIN
58
59 // NOLINTEND
60};
Definition EnableNonOwnerReferences.h:7
Definition ISignalingServiceConfigProvider.h:14
Definition ISignalingServiceConfigProvider.h:22