LeviLamina
Loading...
Searching...
No Matches
IDiscoveryService.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/network/services/CachedAsync.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Bedrock::Http { class Status; }
11namespace Bedrock::Services { struct EnvironmentQueryResponse; }
12// clang-format on
13
14namespace Bedrock::Services {
15
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 // vIndex: 0
21 virtual ~IDiscoveryService() = default;
22
23 // vIndex: 1
24 virtual ::Bedrock::Threading::CachedAsync<::std::shared_ptr<::Bedrock::Services::EnvironmentQueryResponse const>>
25 getServiceEndpoints() const = 0;
26
27 // vIndex: 2
28 virtual void reset() = 0;
29
30 // vIndex: 3
31 virtual ::Bedrock::Http::Status const& getStatus() const = 0;
32 // NOLINTEND
33
34public:
35 // virtual function thunks
36 // NOLINTBEGIN
37
38 // NOLINTEND
39};
40
41} // namespace Bedrock::Services
Definition IDiscoveryService.h:16