ThreadPoolConfig

Controls the thread pooling scheme of the underlying 'TaskScheduler'.

See TaskScheduler for details.

Items

NameValueSummary
Auto0

Let task scheduler make a decision internally.

Threads11

Utilize 1 worker thread, ignore the physical CPU core count.

Threads22

Utilize 2 worker threads, ignore the physical CPU core count.

Threads33

Utilize 3 worker threads, ignore the physical CPU core count.

Threads44

Utilize 4 worker threads, ignore the physical CPU core count.

Threads88

Utilize 8 worker threads, ignore the physical CPU core count.

Threads1616

Utilize 16 worker threads, ignore the physical CPU core count.

PerCore1101

Utilize 1 worker thread per available physical CPU core.

PerCore2102

Utilize 2 worker threads per available physical CPU core.

PerCore3103

Utilize 3 worker threads per available physical CPU core.

PerCore4104

Utilize 4 worker threads per available physical CPU core.

On this page