LeviLamina
Loading...
Searching...
No Matches
TaskResult.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/threading/IAsyncResult.h"
7
8class TaskResult {
9public:
10 // member variables
11 // NOLINTBEGIN
12 ::ll::TypedStorage<1, 1, bool> mIsDone;
13 ::ll::TypedStorage<8, 8, ::std::chrono::steady_clock::time_point> mRunAtTime;
14 ::ll::TypedStorage<8, 16, ::std::shared_ptr<::Bedrock::Threading::IAsyncResult<void>>> mWaitOperation;
15 ::ll::TypedStorage<1, 1, bool> mLinkWaitOperation;
16 // NOLINTEND
17
18public:
19 // prevent constructor by default
20 TaskResult& operator=(TaskResult const&);
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCAPI TaskResult(::TaskResult const&);
26
27 MCAPI ~TaskResult();
28 // NOLINTEND
29
30public:
31 // static functions
32 // NOLINTBEGIN
33 MCAPI static ::TaskResult requeueAfter(::std::chrono::nanoseconds requeueDelay);
34 // NOLINTEND
35
36public:
37 // static variables
38 // NOLINTBEGIN
39 MCAPI static ::TaskResult const& Done();
40
41 MCAPI static ::TaskResult const& Requeue();
42 // NOLINTEND
43
44public:
45 // constructor thunks
46 // NOLINTBEGIN
47 MCAPI void* $ctor(::TaskResult const&);
48 // NOLINTEND
49
50public:
51 // destructor thunk
52 // NOLINTBEGIN
53 MCFOLD void $dtor();
54 // NOLINTEND
55};
Definition TaskResult.h:8