Click or drag to resize
Akka.NETIRepointableRef Interface
INTERNAL API RepointableActorRef (and potentially others) may change their locality at runtime, meaning that isLocal might not be stable. RepointableActorRef has the feature that it starts out "not fully started" (but you can send to it), which is why IsStarted features here; it is not improbable that cluster actor refs will have the same behavior.

Namespace:  Akka.Actor
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public interface IRepointableRef : IActorRefScope

The IRepointableRef type exposes the following members.

Properties
  NameDescription
Public propertyIsLocal
Returns true if the actor is local to this ActorSystem. Returns false if the actor is remote.
(Inherited from IActorRefScope.)
Public propertyIsStarted
Returns true if this actor has started yet. false otherwise.
Top
See Also