LeviLamina
Loading...
Searching...
No Matches
DiscoveryHelper.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/threading/IAsyncResult.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; }
12namespace Bedrock::Services { struct DiscoveryConfig; }
13// clang-format on
14
15namespace Bedrock::Services {
16
18public:
19 // member variables
20 // NOLINTBEGIN
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 DiscoveryHelper& operator=(DiscoveryHelper const&);
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 // vIndex: 0
36 virtual ~DiscoveryHelper() /*override*/ = default;
37 // NOLINTEND
38
39public:
40 // member functions
41 // NOLINTBEGIN
42 MCNAPI explicit DiscoveryHelper(::Bedrock::Services::DiscoveryConfig const& discoveryConfig);
43
44 MCNAPI ::std::shared_ptr<::Bedrock::Threading::IAsyncResult<::Bedrock::Http::Url>>
45 getURL(::std::string const& serviceName);
46 // NOLINTEND
47
48public:
49 // constructor thunks
50 // NOLINTBEGIN
51 MCNAPI void* $ctor(::Bedrock::Services::DiscoveryConfig const& discoveryConfig);
52 // NOLINTEND
53
54public:
55 // vftables
56 // NOLINTBEGIN
57 MCNAPI static void** $vftable();
58 // NOLINTEND
59};
60
61} // namespace Bedrock::Services
Definition EnableNonOwnerReferences.h:7
Definition DiscoveryHelper.h:17
MCAPI ::std::shared_ptr<::Bedrock::Threading::IAsyncResult<::Bedrock::Http::Url > > getURL(::std::string const &serviceName)
static MCAPI void ** $vftable()
MCAPI DiscoveryHelper(::Bedrock::Services::DiscoveryConfig const &discoveryConfig)
MCAPI void * $ctor(::Bedrock::Services::DiscoveryConfig const &discoveryConfig)
Definition DiscoveryConfig.h:7
Definition DiscoveryConfig.h:5
Definition Alias.h:14