Class Setup
Marker base class for a setup part that can be put inside ActorSystemSetup, if a specific concrete setup is not specified in the actor system setup that means defaults are used(usually from the config file) - no concrete setup instance should be mandatory in the ActorSystemSetup that an ActorSystem is created with.
Inheritance
Setup
Inherited Members
Namespace: Akka.Actor.Setup
Assembly: Akka.dll
Syntax
public abstract class Setup
Methods
| Improve this Doc View SourceAnd(Setup)
Construct an ActorSystemSetup with this setup combined with another one.
Allows for fluent creation of settings.
Declaration
public ActorSystemSetup And(Setup other)
Parameters
Type | Name | Description |
---|---|---|
Setup | other | If other is of the same concrete Setup type as this, it will replace this. |
Returns
Type | Description |
---|---|
ActorSystemSetup | A new ActorSystemSetup instance. |