-
Notifications
You must be signed in to change notification settings - Fork 16
DestroyThreadOption
ZjzMisaka edited this page Sep 3, 2024
·
5 revisions
The amount of time a thread is kept alive after it finishes execution (ms).
If a new work is received within this time, the thread is reused; otherwise, it is destroyed.
int KeepAliveTime;The minimum number of threads that the thread pool should maintain at all times.
int MinThreads;- Sync | Async
- Pool Control | Work Control
- Divide And Conquer
- Thread Pool Sizing
- Work Callback | Default Callback
- Rejection Policy
- Parallel Execution
- Work Priority | Thread Priority
- Error Handling
- Work Timeout | Cumulative Work Timeout
- Work Dependency
- Work Group
- Events
- Runtime Status
- Running Timer
- Queue Type (FIFO | LIFO | Deque | Custom)
Core
Results
Options