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 PropsSurrogate : ISurrogate
Properties
| Improve this Doc 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
| Improve this Doc 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. |