Class Scope
This class provides base functionality when defining a system binding (e.g. local/remote/cluster) used during actor deployment.
Implements
Inherited Members
Namespace: Akka.Actor
Assembly: Akka.dll
Syntax
public abstract class Scope : IEquatable<Scope>
Fields
| Improve this Doc View SourceLocal
A binding that binds actor deployments to the local system.
Declaration
public static readonly LocalScope Local
Field Value
Type | Description |
---|---|
LocalScope |
Methods
| Improve this Doc View SourceCopy()
Creates a copy of the current instance.
Declaration
public abstract Scope Copy()
Returns
Type | Description |
---|---|
Scope | The newly created Scope |
Equals(Scope)
Declaration
public virtual bool Equals(Scope other)
Parameters
Type | Name | Description |
---|---|---|
Scope | other |
Returns
Type | Description |
---|---|
Boolean |
WithFallback(Scope)
Creates a new Scope from this scope using another Scope to backfill options that might be missing from this scope.
note
This method is immutable and returns a new instance of Scope.
Declaration
public abstract Scope WithFallback(Scope other)
Parameters
Type | Name | Description |
---|---|---|
Scope | other | The Scope used for fallback configuration. |
Returns
Type | Description |
---|---|
Scope | A new Scope using |