LeviLamina
Loading...
Searching...
No Matches
IAsyncResourceStreamResponse.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace cohtml { class ISyncStreamReader; }
8// clang-format on
9
10namespace cohtml {
11
13public:
14 // IAsyncResourceStreamResponse inner types define
15 enum class Status : int {
16 Success = 0,
17 Failure = 1,
18 };
19
20public:
21 // virtual functions
22 // NOLINTBEGIN
23 virtual ~IAsyncResourceStreamResponse() = default;
24
25 virtual void SetStreamReader(::cohtml::ISyncStreamReader*) = 0;
26
27 virtual void Finish(::cohtml::IAsyncResourceStreamResponse::Status) = 0;
28 // NOLINTEND
29
30public:
31 // virtual function thunks
32 // NOLINTBEGIN
33
34 // NOLINTEND
35};
36
37} // namespace cohtml
Definition IAsyncResourceStreamResponse.h:7
Definition ISyncStreamReader.h:7