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
17class HttpDiagnostics : public ::Bedrock::Http::DispatcherProcess {
18public:
19 // prevent constructor by default
20 HttpDiagnostics();
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 virtual ::Bedrock::Threading::Async<::Bedrock::Http::Response>
26 send(::Bedrock::Http::Request&& request) /*override*/;
27
28 virtual ~HttpDiagnostics() /*override*/ = default;
29 // NOLINTEND
30
31public:
32 // member functions
33 // NOLINTBEGIN
34 MCNAPI explicit HttpDiagnostics(::std::shared_ptr<::Bedrock::Http::DispatcherProcess> childProcess);
35 // NOLINTEND
36
37public:
38 // constructor thunks
39 // NOLINTBEGIN
40 MCNAPI void* $ctor(::std::shared_ptr<::Bedrock::Http::DispatcherProcess> childProcess);
41 // NOLINTEND
42
43public:
44 // virtual function thunks
45 // NOLINTBEGIN
46 MCNAPI ::Bedrock::Threading::Async<::Bedrock::Http::Response> $send(::Bedrock::Http::Request&& request);
47
48
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
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:16
Definition Response.h:13