LeviLamina
Loading...
Searching...
No Matches
BinaryRequestBody.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/http/IRequestBody.h"
7
8namespace Bedrock::Http {
9
11public:
12 // member variables
13 // NOLINTBEGIN
16 // NOLINTEND
17
18public:
19 // prevent constructor by default
20 BinaryRequestBody& operator=(BinaryRequestBody const&);
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 // vIndex: 0
28 virtual ~BinaryRequestBody() /*override*/ = default;
29
30 // vIndex: 1
31 virtual ::Bedrock::Http::Internal::IRequestBody::ReadResult read(::gsl::span<uchar> destination) /*override*/;
32
33 // vIndex: 2
34 virtual uint64 getSize() /*override*/;
35
36 // vIndex: 3
37 virtual void cancel() /*override*/;
38
39 // vIndex: 4
40 virtual ::std::string const& getLoggableSource() const /*override*/;
41
42 // vIndex: 5
43 virtual ::gsl::span<uchar const> getLoggableData() const /*override*/;
44 // NOLINTEND
45
46public:
47 // member functions
48 // NOLINTBEGIN
49 MCAPI void setData(::gsl::span<uchar const> data);
50 // NOLINTEND
51
52public:
53 // destructor thunk
54 // NOLINTBEGIN
55
56 // NOLINTEND
57
58public:
59 // virtual function thunks
60 // NOLINTBEGIN
61 MCAPI ::Bedrock::Http::Internal::IRequestBody::ReadResult $read(::gsl::span<uchar> destination);
62
63 MCAPI uint64 $getSize();
64
65 MCAPI void $cancel();
66
67 MCAPI ::std::string const& $getLoggableSource() const;
68
69 MCFOLD ::gsl::span<uchar const> $getLoggableData() const;
70 // NOLINTEND
71
72public:
73 // vftables
74 // NOLINTBEGIN
75 MCAPI static void** $vftable();
76 // NOLINTEND
77};
78
79} // namespace Bedrock::Http
Definition BinaryRequestBody.h:10
Definition IRequestBody.h:7
Definition Alias.h:14