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 MCNAPI void setData(::gsl::span<uchar const> data);
50 // NOLINTEND
51
52public:
53 // virtual function thunks
54 // NOLINTBEGIN
55 MCNAPI ::Bedrock::Http::Internal::IRequestBody::ReadResult $read(::gsl::span<uchar> destination);
56
57 MCNAPI uint64 $getSize();
58
59 MCNAPI void $cancel();
60
61 MCNAPI ::std::string const& $getLoggableSource() const;
62
63 MCNAPI ::gsl::span<uchar const> $getLoggableData() const;
64 // NOLINTEND
65
66public:
67 // vftables
68 // NOLINTBEGIN
69 MCNAPI static void** $vftable();
70 // NOLINTEND
71};
72
73} // namespace Bedrock::Http
Definition BinaryRequestBody.h:10
MCAPI::std::string const & $getLoggableSource() const
MCAPI ::gsl::span< uchar const > $getLoggableData() const
MCAPI::Bedrock::Http::Internal::IRequestBody::ReadResult $read(::gsl::span< uchar > destination)
static MCAPI void ** $vftable()
MCAPI void setData(::gsl::span< uchar const > data)
Definition IRequestBody.h:7
Definition Alias.h:14