LeviLamina
Loading...
Searching...
No Matches
IgnoredResponseBody.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/http/IResponseBody.h"
7#include "mc/deps/core/http/ResponseBodyType.h"
8
9namespace Bedrock::Http {
10
12public:
13 // virtual functions
14 // NOLINTBEGIN
15 virtual ::std::error_code start(::std::optional<uint64>) /*override*/;
16
17 virtual ::std::error_code write(::gsl::span<uchar const>) /*override*/;
18
19 virtual void complete() /*override*/;
20
21 virtual void cancel() /*override*/;
22
23 virtual ::std::string const& getLoggableDestination() const /*override*/;
24
25 virtual ::gsl::span<uchar const> getLoggableData() const /*override*/;
26
27 virtual ::Bedrock::Http::ResponseBodyType getType() const /*override*/;
28
29 virtual ~IgnoredResponseBody() /*override*/ = default;
30 // NOLINTEND
31
32public:
33 // virtual function thunks
34 // NOLINTBEGIN
35#ifdef LL_PLAT_C
36 MCNAPI ::std::error_code $start(::std::optional<uint64>);
37
38 MCNAPI ::std::string const& $getLoggableDestination() const;
39
40 MCNAPI ::gsl::span<uchar const> $getLoggableData() const;
41
42 MCNAPI ::Bedrock::Http::ResponseBodyType $getType() const;
43#endif
44
45
46 // NOLINTEND
47};
48
49} // namespace Bedrock::Http
Definition IgnoredResponseBody.h:11
Definition IResponseBody.h:10