Class Deployer
Used to configure and deploy actors.
Inherited Members
Namespace: Akka.Actor
Assembly: Akka.dll
Syntax
public class Deployer
Constructors
| Improve this Doc View SourceDeployer(Settings)
Initializes a new instance of the Deployer class.
Declaration
public Deployer(Settings settings)
Parameters
Type | Name | Description |
---|---|---|
Settings | settings | The settings used to configure the deployer. |
Fields
| Improve this Doc View SourceDefault
TBD
Declaration
protected readonly Config Default
Field Value
Type | Description |
---|---|
Config |
Methods
| Improve this Doc View SourceLookup(ActorPath)
TBD
Declaration
public Deploy Lookup(ActorPath path)
Parameters
Type | Name | Description |
---|---|---|
ActorPath | path | TBD |
Returns
Type | Description |
---|---|
Deploy | TBD |
Lookup(IEnumerable<String>)
TBD
Declaration
public Deploy Lookup(IEnumerable<string> path)
Parameters
Type | Name | Description |
---|---|---|
IEnumerable<String> | path | TBD |
Returns
Type | Description |
---|---|
Deploy | TBD |
ParseConfig(String, Config)
Creates an actor deployment to the supplied path, key
, using the supplied configuration, config
.
Declaration
public virtual Deploy ParseConfig(string key, Config config)
Parameters
Type | Name | Description |
---|---|---|
String | key | The path used to deploy the actor. |
Config | config | The configuration used to configure the deployed actor. |
Returns
Type | Description |
---|---|
Deploy | A configured actor deployment to the given path. |
SetDeploy(Deploy)
TBD
Declaration
public void SetDeploy(Deploy deploy)
Parameters
Type | Name | Description |
---|---|---|
Deploy | deploy | TBD |
Exceptions
Type | Condition |
---|---|
IllegalActorNameException | This exception is thrown if the actor name in the deployment path is empty or contains invalid ASCII.
Valid ASCII includes letters and anything from ValidSymbols. Note that paths
cannot start with the |