View source code
Display the source code in std/parallelism.d from which this page was generated on github.
Report a bug
If you spot a problem with this page, click here to create a Bugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page. Requires a signed-in GitHub account. This works well for small changes. If you'd like to make larger changes you may want to consider using local clone.

std.parallelism.TaskPool.this - multiple declarations

Function TaskPool.this

Default constructor that initializes a TaskPool with totalCPUs - 1 worker threads. The minus 1 is included because the main thread will also be available to do work.

this() @trusted;

Note

On single-core machines, the primitives provided by TaskPool operate transparently in single-threaded mode.

Function TaskPool.this

Allows for custom number of worker threads.

this (
  ulong nWorkers
) @trusted;

Authors

License

Boost License 1.0