Class Props.PropsSurrogate
This class represents a surrogate of a Props configuration object. Its main use is to help during the serialization process.
Implements
Inherited Members
Namespace: Akka.Actor
Assembly: Akka.dll
Syntax
public class Props.PropsSurrogate : ISurrogate
Properties
| Edit this page View SourceArguments
The arguments used to create the actor.
Declaration
public object[] Arguments { get; set; }
Property Value
| Type | Description |
|---|---|
| object[] |
Deploy
The configuration used to deploy the actor.
Declaration
public Deploy Deploy { get; set; }
Property Value
| Type | Description |
|---|---|
| Deploy |
Type
The type of actor to create
Declaration
public Type Type { get; set; }
Property Value
| Type | Description |
|---|---|
| Type |
Methods
| Edit this page View SourceFromSurrogate(ActorSystem)
Creates a Props 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 Props encapsulated by this surrogate. |
Edit this page