LeviLamina
Loading...
Searching...
No Matches
IWebService.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/threading/Async.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Bedrock::Http { class Request; }
11namespace Bedrock::Http { class Response; }
12namespace Bedrock::Http { struct WebServiceError; }
13namespace Bedrock::Threading { struct DelayableTaskGroup; }
14// clang-format on
15
16namespace Bedrock::Http {
17
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 virtual ::Bedrock::Threading::Async<::Bedrock::Http::Response> sendRawRequest(::Bedrock::Http::Request) = 0;
23
24 virtual ::Bedrock::Threading::DelayableTaskGroup& getTaskGroup() = 0;
25 // NOLINTEND
26
27public:
28 // virtual function thunks
29 // NOLINTBEGIN
30
31 // NOLINTEND
32};
33
34} // namespace Bedrock::Http
Definition IWebService.h:18
Definition Request.h:16
Definition Response.h:7
Definition WebServiceError.h:10
Definition DelayableTaskGroup.h:16