Class ActorRefBase
Base implementation for IActorRef implementations.
Assembly: Akka.dll
Syntax
public abstract class ActorRefBase : IActorRef, ICanTell, IEquatable<IActorRef>, IComparable<IActorRef>, ISurrogated, IComparable
Properties
|
Edit this page
View Source
Path
Declaration
public abstract ActorPath Path { get; }
Property Value
Methods
|
Edit this page
View Source
CompareTo(IActorRef)
Declaration
public int CompareTo(IActorRef other)
Parameters
Returns
|
Edit this page
View Source
CompareTo(object)
Declaration
public int CompareTo(object obj)
Parameters
Type |
Name |
Description |
object |
obj |
|
Returns
Exceptions
|
Edit this page
View Source
Equals(IActorRef)
Checks equality between this instance and another object.
Declaration
public bool Equals(IActorRef other)
Parameters
Returns
Type |
Description |
bool |
true if this IActorRef instance have the same reference
as the other instance, if this ActorPath of
this IActorRef instance is equal to the other instance,
and other is not null ; otherwise false .
|
|
Edit this page
View Source
Equals(object)
Declaration
public override bool Equals(object obj)
Parameters
Type |
Name |
Description |
object |
obj |
|
Returns
Overrides
|
Edit this page
View Source
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
|
Edit this page
View Source
Tell(object, IActorRef)
Declaration
public void Tell(object message, IActorRef sender)
Parameters
|
Edit this page
View Source
TellInternal(object, IActorRef)
Declaration
protected abstract void TellInternal(object message, IActorRef sender)
Parameters
|
Edit this page
View Source
ToString()
Declaration
public override string ToString()
Returns
Overrides
|
Edit this page
View Source
ToSurrogate(ActorSystem)
Creates a surrogate representation of the current ActorRefBase.
Declaration
public virtual ISurrogate ToSurrogate(ActorSystem system)
Parameters
Returns
Implements
Extension Methods