Dreamine.Threading 1.0.1
이 패키지는 .NET ThreadPool이나 Task Parallel Library를 대체하려는 목적이 아닙니다.
로딩중...
검색중...
일치하는것 없음
DreamineThreadCycleContext.cs
이 파일의 문서화 페이지로 가기
2
11public 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
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}
DreamineThreadCycleContext(string threadName, long cycleCount, int jobCount, int? coreIndex, bool isOverflowPolling, DateTimeOffset timestamp)