Dreamine.Threading
1.0.1
이 패키지는 .NET ThreadPool이나 Task Parallel Library를 대체하려는 목적이 아닙니다.
Toggle main menu visibility
로딩중...
검색중...
일치하는것 없음
DreamineThreadCycleContext.cs
이 파일의 문서화 페이지로 가기
1
namespace
Dreamine.Threading.Models
;
2
11
public
sealed
class
DreamineThreadCycleContext
12
{
21
public
string
ThreadName
{
get
; }
22
31
public
long
CycleCount
{
get
; }
32
41
public
int
JobCount
{
get
; }
42
51
public
int
?
CoreIndex
{
get
; }
52
61
public
bool
IsOverflowPolling
{
get
; }
62
71
public
DateTimeOffset
Timestamp
{
get
; }
72
129
public
DreamineThreadCycleContext
(
130
string
threadName,
131
long
cycleCount,
132
int
jobCount,
133
int
? coreIndex,
134
bool
isOverflowPolling,
135
DateTimeOffset timestamp)
136
{
137
ThreadName
=
string
.IsNullOrWhiteSpace(threadName)
138
?
"DreamineThread"
139
: threadName;
140
141
CycleCount
= cycleCount;
142
JobCount
= jobCount;
143
CoreIndex
= coreIndex;
144
IsOverflowPolling
= isOverflowPolling;
145
Timestamp
= timestamp;
146
}
147
}
Dreamine.Threading.Models
Definition
DreamineThreadCoreAssignment.cs:1
Dreamine.Threading.Models.DreamineThreadCycleContext.ThreadName
string ThreadName
Definition
DreamineThreadCycleContext.cs:21
Dreamine.Threading.Models.DreamineThreadCycleContext.CycleCount
long CycleCount
Definition
DreamineThreadCycleContext.cs:31
Dreamine.Threading.Models.DreamineThreadCycleContext.CoreIndex
int? CoreIndex
Definition
DreamineThreadCycleContext.cs:51
Dreamine.Threading.Models.DreamineThreadCycleContext.Timestamp
DateTimeOffset Timestamp
Definition
DreamineThreadCycleContext.cs:71
Dreamine.Threading.Models.DreamineThreadCycleContext.DreamineThreadCycleContext
DreamineThreadCycleContext(string threadName, long cycleCount, int jobCount, int? coreIndex, bool isOverflowPolling, DateTimeOffset timestamp)
Definition
DreamineThreadCycleContext.cs:129
Dreamine.Threading.Models.DreamineThreadCycleContext.IsOverflowPolling
bool IsOverflowPolling
Definition
DreamineThreadCycleContext.cs:61
Dreamine.Threading.Models.DreamineThreadCycleContext.JobCount
int JobCount
Definition
DreamineThreadCycleContext.cs:41
Models
DreamineThreadCycleContext.cs
다음에 의해 생성됨 :
1.17.0