LeviLamina
Loading...
Searching...
No Matches
HttpDiagnostics.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/http/DispatcherProcess.h"
7#include "mc/deps/core/threading/Async.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace Bedrock::Http { class Request; }
12namespace Bedrock::Http { class Response; }
13// clang-format on
14
15namespace Bedrock::Http {
16
18public:
19 // prevent constructor by default
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 // vIndex: 1
26 virtual ::Bedrock::Threading::Async<::Bedrock::Http::Response>
27 send(::Bedrock::Http::Request&& request) /*override*/;
28
29 // vIndex: 0
30 virtual ~HttpDiagnostics() /*override*/ = default;
31 // NOLINTEND
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCNAPI explicit HttpDiagnostics(::std::shared_ptr<::Bedrock::Http::DispatcherProcess> childProcess);
37 // NOLINTEND
38
39public:
40 // constructor thunks
41 // NOLINTBEGIN
42 MCNAPI void* $ctor(::std::shared_ptr<::Bedrock::Http::DispatcherProcess> childProcess);
43 // NOLINTEND
44
45public:
46 // virtual function thunks
47 // NOLINTBEGIN
48 MCNAPI ::Bedrock::Threading::Async<::Bedrock::Http::Response> $send(::Bedrock::Http::Request&& request);
49 // NOLINTEND
50
51public:
52 // vftables
53 // NOLINTBEGIN
54 MCNAPI static void** $vftable();
55 // NOLINTEND
56};
57
58} // namespace Bedrock::Http
Definition DispatcherProcess.h:11
Definition HttpDiagnostics.h:17
MCAPI void * $ctor(::std::shared_ptr<::Bedrock::Http::DispatcherProcess > childProcess)
MCAPI HttpDiagnostics(::std::shared_ptr<::Bedrock::Http::DispatcherProcess > childProcess)
static MCAPI void ** $vftable()
MCAPI ::Bedrock::Threading::Async<::Bedrock::Http::Response > $send(::Bedrock::Http::Request &&request)
Definition Request.h:15