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#ifdef LL_PLAT_S
40 virtual ~ISignalingServiceConfigProvider() /*override*/ = default;
41#else // LL_PLAT_C
42 virtual ~ISignalingServiceConfigProvider() /*override*/;
43#endif
44
45 virtual ::Bedrock::Threading::Async<::Bedrock::Http::Url> getUrl(bool, ::std::string const&) = 0;
46
47 virtual ::Bedrock::Threading::Async<::ISignalingServiceConfigProvider::Token> getAuthToken() = 0;
48
49 virtual void reset() = 0;
50 // NOLINTEND
51
52public:
53 // destructor thunk
54 // NOLINTBEGIN
55 MCNAPI void $dtor();
56 // NOLINTEND
57
58public:
59 // virtual function thunks
60 // NOLINTBEGIN
61
62 // NOLINTEND
63};
Definition EnableNonOwnerReferences.h:7
Definition ISignalingServiceConfigProvider.h:14
Definition Url.h:7
Definition ISignalingServiceConfigProvider.h:22