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 // NOLINTEND
28
29public:
30 // member functions
31 // NOLINTBEGIN
32 MCNAPI explicit HttpDiagnostics(::std::shared_ptr<::Bedrock::Http::DispatcherProcess> childProcess);
33 // NOLINTEND
34
35public:
36 // constructor thunks
37 // NOLINTBEGIN
38 MCNAPI void* $ctor(::std::shared_ptr<::Bedrock::Http::DispatcherProcess> childProcess);
39 // NOLINTEND
40
41public:
42 // virtual function thunks
43 // NOLINTBEGIN
44 MCNAPI ::Bedrock::Threading::Async<::Bedrock::Http::Response> $send(::Bedrock::Http::Request&& request);
45
46
47 // NOLINTEND
48
49public:
50 // vftables
51 // NOLINTBEGIN
52 MCNAPI static void** $vftable();
53 // NOLINTEND
54};
55
56} // 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:22
Definition Response.h:7