LeviLamina
Loading...
Searching...
No Matches
INativeHttpDelegate.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class TaskGroup;
8namespace Bedrock::Http { class Request; }
9namespace Bedrock::Http { class Response; }
10// clang-format on
11
12namespace ScriptModuleMinecraftNet {
13
15public:
16 // virtual functions
17 // NOLINTBEGIN
18 virtual ~INativeHttpDelegate() = default;
19
20 virtual bool isInitialized() const = 0;
21
22 virtual void
23 send(::TaskGroup&, ::Bedrock::Http::Request&, ::std::function<void(::Bedrock::Http::Response const&)>) = 0;
24 // NOLINTEND
25
26public:
27 // virtual function thunks
28 // NOLINTBEGIN
29
30 // NOLINTEND
31};
32
33} // namespace ScriptModuleMinecraftNet
Definition Request.h:16
Definition Response.h:7
Definition INativeHttpDelegate.h:14
Definition TaskGroup.h:57