Class ThreadPoolConfig
Used inside Akka.Remote for constructing the low-level Helios threadpool, but inside vanilla Akka it's also used for constructing custom fixed-size-threadpool dispatchers.
Inherited Members
Namespace: Akka.Dispatch
Assembly: Akka.dll
Syntax
public class ThreadPoolConfig
Constructors
| Edit this page View SourceThreadPoolConfig(Config)
TBD
Declaration
public ThreadPoolConfig(Config config)
Parameters
| Type | Name | Description |
|---|---|---|
| Config | config | TBD |
Properties
| Edit this page View SourcePoolSizeFactor
TBD
Declaration
public double PoolSizeFactor { get; }
Property Value
| Type | Description |
|---|---|
| double |
PoolSizeMax
TBD
Declaration
public int PoolSizeMax { get; }
Property Value
| Type | Description |
|---|---|
| int |
PoolSizeMin
TBD
Declaration
public int PoolSizeMin { get; }
Property Value
| Type | Description |
|---|---|
| int |
Methods
| Edit this page View SourceScaledPoolSize(int, double, int)
TBD
Declaration
public static int ScaledPoolSize(int floor, double scalar, int ceiling)
Parameters
| Type | Name | Description |
|---|---|---|
| int | floor | TBD |
| double | scalar | TBD |
| int | ceiling | TBD |
Returns
| Type | Description |
|---|---|
| int | TBD |
Edit this page