LeviLamina
Loading...
Searching...
No Matches
TaskStartInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct TaskStartInfo {
6public:
7 // member variables
8 // NOLINTBEGIN
15 // NOLINTEND
16
17public:
18 // prevent constructor by default
19 TaskStartInfo& operator=(TaskStartInfo const&);
20 TaskStartInfo(TaskStartInfo const&);
21 TaskStartInfo();
22
23public:
24 // member functions
25 // NOLINTBEGIN
26 MCNAPI ::TaskStartInfo& startWithDelay(::std::chrono::nanoseconds delay);
27 // NOLINTEND
28
29public:
30 // static variables
31 // NOLINTBEGIN
32 MCNAPI static ::std::thread::id const& NoAffinity();
33 // NOLINTEND
34
35public:
36 // constructor thunks
37 // NOLINTBEGIN
38 MCNAPI_C void* $ctor(char const* name);
39
40 MCNAPI_C void* $ctor(::std::string_view name);
41 // NOLINTEND
42};
MCAPI::TaskStartInfo & startWithDelay(::std::chrono::nanoseconds delay)
static MCAPI ::std::thread::id const & NoAffinity()
Definition Alias.h:14