Class RemoteScope
This class represents a binding of an actor deployment to a remote system. Actors in this scope are deployed to a specified Address.
Inherited Members
Namespace: Akka.Actor
Assembly: Akka.dll
Syntax
public class RemoteScope : Scope, IEquatable<Scope>, IEquatable<RemoteScope>
Constructors
| Improve this Doc View SourceRemoteScope()
Initializes a new instance of the RemoteScope class.
Declaration
protected RemoteScope()
RemoteScope(Address)
Initializes a new instance of the RemoteScope class.
Declaration
public RemoteScope(Address address)
Parameters
Type | Name | Description |
---|---|---|
Address | address | The address to which actors are deployed. |
Properties
| Improve this Doc View SourceAddress
The address to which actors are deployed.
Declaration
public Address Address { get; set; }
Property Value
Type | Description |
---|---|
Address |
Methods
| Improve this Doc View SourceCopy()
Creates a new RemoteScope that uses the current Address.
Declaration
public override Scope Copy()
Returns
Type | Description |
---|---|
Scope | The newly created RemoteScope |
Overrides
| Improve this Doc View SourceEquals(RemoteScope)
Declaration
public bool Equals(RemoteScope other)
Parameters
Type | Name | Description |
---|---|---|
RemoteScope | other |
Returns
Type | Description |
---|---|
Boolean |
Equals(Object)
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
Object | obj |
Returns
Type | Description |
---|---|
Boolean |
Overrides
| Improve this Doc View SourceGetHashCode()
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
Int32 |
Overrides
| Improve this Doc View SourceWithFallback(Scope)
Creates a new Scope from this scope using another Scope to backfill options that might be missing from this scope.
note
This method ignores the given scope and returns the current instance.
Declaration
public override Scope WithFallback(Scope other)
Parameters
Type | Name | Description |
---|---|---|
Scope | other | The Scope used for fallback configuration. |
Returns
Type | Description |
---|---|
Scope | The instance of this scope |