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 DeploySurrogate : ISurrogate
Properties
| Improve this Doc 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 |
---|---|
Int32 |
Methods
| Improve this Doc 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. |