Dreamine.Threading 1.0.1
이 패키지는 .NET ThreadPool이나 Task Parallel Library를 대체하려는 목적이 아닙니다.
로딩중...
검색중...
일치하는것 없음
DreamineThreadInfo.cs
이 파일의 문서화 페이지로 가기
2
11public sealed class DreamineThreadInfo
12{
21 public string Name { get; }
22
32
42
51 public int IntervalMs { get; }
52
61 public int? CoreIndex { get; }
62
71 public bool UseAffinity { get; }
72
81 public int JobCount { get; }
82
91 public long CycleCount { get; }
92
101 public DateTimeOffset? StartedAt { get; }
102
111 public DateTimeOffset? StoppedAt { get; }
112
121 public string? LastErrorMessage { get; }
122
220 string name,
222 DreamineThreadPriority priority,
223 int intervalMs,
224 int? coreIndex,
225 bool useAffinity,
226 int jobCount,
227 long cycleCount,
228 DateTimeOffset? startedAt,
229 DateTimeOffset? stoppedAt,
230 string? lastErrorMessage)
231 {
232 Name = name;
233 Status = status;
234 Priority = priority;
235 IntervalMs = intervalMs;
236 CoreIndex = coreIndex;
237 UseAffinity = useAffinity;
238 JobCount = jobCount;
239 CycleCount = cycleCount;
240 StartedAt = startedAt;
241 StoppedAt = stoppedAt;
242 LastErrorMessage = lastErrorMessage;
243 }
244}
DreamineThreadInfo(string name, DreamineThreadStatus status, DreamineThreadPriority priority, int intervalMs, int? coreIndex, bool useAffinity, int jobCount, long cycleCount, DateTimeOffset? startedAt, DateTimeOffset? stoppedAt, string? lastErrorMessage)