Class ActorSystemSetup
A set of setup classes to allow for programmatic configuration of the ActorSystem
Inheritance
ActorSystemSetup
Assembly: Akka.dll
Syntax
public sealed class ActorSystemSetup
Fields
|
Improve this Doc
View Source
Empty
Declaration
public static readonly ActorSystemSetup Empty
Field Value
Methods
|
Improve this Doc
View Source
And<T>(T)
Shortcut for And(Setup) to make it easier to chain the fluent interface together.
Declaration
public ActorSystemSetup And<T>(T setup)
where T : Setup
Parameters
Type |
Name |
Description |
T |
setup |
Setup input. If a setting of the same type is already present it will be replaced.
|
Returns
Type Parameters
Name |
Description |
T |
The type of Setup
|
Remarks
|
Improve this Doc
View Source
Create(Setup[])
Declaration
public static ActorSystemSetup Create(params Setup[] setup)
Parameters
Type |
Name |
Description |
Setup[] |
setup |
|
Returns
|
Improve this Doc
View Source
Get<T>()
Declaration
public Option<T> Get<T>()
where T : Setup
Returns
Type Parameters
|
Improve this Doc
View Source
ToString()
Declaration
public override string ToString()
Returns
Overrides
|
Improve this Doc
View Source
WithSetup<T>(T)
Declaration
public ActorSystemSetup WithSetup<T>(T setup)
where T : Setup
Parameters
Type |
Name |
Description |
T |
setup |
Setup input. If a setting of the same type is already present it will be replaced.
|
Returns
Type Parameters
Name |
Description |
T |
The type of Setup
|
Extension Methods