Dreamine.Threading 1.0.1
이 패키지는 .NET ThreadPool이나 Task Parallel Library를 대체하려는 목적이 아닙니다.
로딩중...
검색중...
일치하는것 없음
DreamineThreadOptions.cs
이 파일의 문서화 페이지로 가기
2
11public sealed class DreamineThreadOptions
12{
21 public string Name { get; set; } = "DreamineThread";
22
32
41 public int IntervalMs { get; set; } = 10;
42
52
61 public int? CoreIndex { get; set; }
62
71 public int AutoThreadsPerCore { get; set; } = 2;
72
81 public int OverflowPollingIntervalMs { get; set; } = 100;
82
91 public bool AutoStart { get; set; } = true;
92
101 public bool UseHighPrecisionTimer { get; set; } = true;
102
111 public bool UseAdaptiveCpuDelay { get; set; } = true;
112
121 public bool YieldWhenIntervalIsZero { get; set; } = true;
122
131 public TimeSpan StopTimeout { get; set; } = TimeSpan.FromSeconds(2);
132
167}