Class Deploy.DeploySurrogate
This class represents a surrogate of a Deploy configuration object. Its main use is to help during the serialization process.
Implements
Inherited Members
Namespace: Akka.Actor
Assembly: Akka.dll
Syntax
public class Deploy.DeploySurrogate : ISurrogate
Properties
| Edit this page View SourceConfig
The configuration used for this deployment.
Declaration
public Config Config { get; set; }
Property Value
| Type | Description |
|---|---|
| Config |
Dispatcher
The dispatcher used in this deployment.
Declaration
public string Dispatcher { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Mailbox
The mailbox configured for the actor used in this deployment.
Declaration
public string Mailbox { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Path
The path where the actor is deployed.
Declaration
public string Path { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
RouterConfig
The router used for this deployment.
Declaration
public RouterConfig RouterConfig { get; set; }
Property Value
| Type | Description |
|---|---|
| RouterConfig |
Scope
The scope bound to this deployment.
Declaration
public Scope Scope { get; set; }
Property Value
| Type | Description |
|---|---|
| Scope |
StashCapacity
The size of the stash used in this deployment.
Declaration
public int StashCapacity { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Methods
| Edit this page View SourceFromSurrogate(ActorSystem)
Creates a Deploy encapsulated by this surrogate.
Declaration
public ISurrogated FromSurrogate(ActorSystem system)
Parameters
| Type | Name | Description |
|---|---|---|
| ActorSystem | system | The actor system that owns this router. |
Returns
| Type | Description |
|---|---|
| ISurrogated | The Deploy encapsulated by this surrogate. |
Edit this page