Click or drag to resize
Akka.NETDeploy Class
This class represents a configuration object used in the deployment of an actor.
Inheritance Hierarchy
SystemObject
  Akka.ActorDeploy

Namespace:  Akka.Actor
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public class Deploy : IEquatable<Deploy>, 
	ISurrogated

The Deploy type exposes the following members.

Constructors
  NameDescription
Public methodDeploy
Initializes a new instance of the Deploy class.
Public methodDeploy(RouterConfig)
Initializes a new instance of the Deploy class.
Public methodDeploy(Scope)
Initializes a new instance of the Deploy class.
Public methodDeploy(String, Scope)
Initializes a new instance of the Deploy class.
Public methodDeploy(RouterConfig, Scope)
Initializes a new instance of the Deploy class.
Public methodDeploy(String, Config, RouterConfig, Scope, String)
Initializes a new instance of the Deploy class.
Public methodDeploy(String, Config, RouterConfig, Scope, String, String)
Initializes a new instance of the Deploy class.
Top
Properties
  NameDescription
Public propertyConfig
The configuration used for this deployment.
Public propertyDispatcher
The dispatcher used in this deployment.
Public propertyMailbox
The mailbox configured for the actor used in this deployment.
Public propertyPath
The path where the actor is deployed.
Public propertyRouterConfig
The router used for this deployment.
Public propertyScope
The scope bound to this deployment.
Top
Methods
  NameDescription
Public methodEquals(Object)
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodEquals(Deploy)
Indicates whether the current object is equal to another object of the same type.
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodToSurrogate
Creates a surrogate representation of the current Deploy.
Public methodWithDispatcher
Creates a new Deploy with a given dispatcher.
Note Note
This method is immutable and returns a new instance of Deploy.
Public methodWithFallback
Creates a new Deploy from this deployment using another Deploy to backfill options that might be missing from this deployment.
Note Note
This method is immutable and returns a new instance of Deploy.
Public methodWithMailbox
Creates a new Deploy with a given mailbox.
Note Note
This method is immutable and returns a new instance of Deploy.
Public methodWithRouterConfig
Creates a new Deploy with a given RouterConfig.
Note Note
This method is immutable and returns a new instance of Deploy.
Public methodWithScope
Creates a new Deploy with a given Scope.
Note Note
This method is immutable and returns a new instance of Deploy.
Top
Fields
  NameDescription
Public fieldStatic memberLocal
A deployment configuration that is bound to the Local scope.
Public fieldStatic memberNoDispatcherGiven
This deployment does not have a dispatcher associated with it.
Public fieldStatic memberNoMailboxGiven
This deployment does not have a mailbox associated with it.
Public fieldStatic memberNone
A deployment configuration where none of the options have been configured.
Public fieldStatic memberNoScopeGiven
This deployment has an unspecified scope associated with it.
Top
Extension Methods
See Also