Should be able to set maximum number of threads for an added task list when adding to thread pool #10
Labels
No labels
feature-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
indigocode/igasync#10
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Discovered when adding Recast/Detour support - there are often cases for thread local data that is not appropriate to add to every thread. It's also possible to have some execution contexts that should be minimized (e.g. long running background tasks).
Sometimes but not always it makes sense to have an entirely separate thread pool for things like this, but I'm finding more and more that it's worthwhile to maintain a single thread pool in other cases with execution contexts that are only added to certain threads.