Class BootstrapSetup
Core bootstrap settings for the ActorSystem, which can be created using one of the static factory methods
on this class.
Inheritance
BootstrapSetup
Assembly: Akka.dll
Syntax
public sealed class BootstrapSetup : Setup
Properties
|
Improve this Doc
View Source
ActorRefProvider
Overrides the 'akka.actor.provider' setting in config. Can be 'local' (default), 'remote', or cluster.
It can also be the fully qualified class name of an ActorRefProvider.
Declaration
public Option<ProviderSelection> ActorRefProvider { get; }
Property Value
|
Improve this Doc
View Source
Config
Configuration to use for the ActorSystem. If no Config is given, the default reference
configuration will be loaded via Load().
Declaration
public Option<Config> Config { get; }
Property Value
Methods
|
Improve this Doc
View Source
Create()
Declaration
public static BootstrapSetup Create()
Returns
|
Improve this Doc
View Source
WithActorRefProvider(ProviderSelection)
Declaration
public BootstrapSetup WithActorRefProvider(ProviderSelection name)
Parameters
Returns
|
Improve this Doc
View Source
WithConfig(Config)
Declaration
public BootstrapSetup WithConfig(Config config)
Parameters
Type |
Name |
Description |
Config |
config |
|
Returns
|
Improve this Doc
View Source
WithConfigFallback(Config)
Declaration
public BootstrapSetup WithConfigFallback(Config config)
Parameters
Type |
Name |
Description |
Config |
config |
|
Returns
Extension Methods