Namespace Akka.Remote
Classes
AddressUid
Extension that holds a UID that is assigned as a random 'Int'.
The UID is intended to be used together with an Address to be able to distinguish restarted actor system using the same host and port.
AddressUidExtension
AkkaProtocolSettings
Setings for the AkkaProtocolTransport
AssociatedEvent
TBD
AssociationErrorEvent
TBD
AssociationEvent
TBD
Deadline
This class represents the latest date or time by which an operation should be completed.
DeadlineFailureDetector
This class represents a FailureDetector that uses an absolute timeout of missing heartbeats to trigger unavailability.
DefaultFailureDetectorRegistry<T>
A lock-less, thread-safe implementation of IFailureDetectorRegistry<T>.
DisassociatedEvent
Event that is fired when a remote association to another ActorSystem is terminated.
FailureDetector
A failure detector must be a thread-safe, mutable construct that registers heartbeat events of a resource and is able to decide the availability of that monitored resource
PhiAccrualFailureDetector
Implementation of 'The Phi Accrual Failure Detector' by Hayashibara et al. as defined in their paper: [http://ddg.jaist.ac.jp/pub/HDY+04.pdf]
The suspicion level of failure is given by a value called φ (phi). The basic idea of the φ failure detector is to express the value of φ on a scale that is dynamically adjusted to reflect current network conditions. A configurable threshold is used to decide if φ is considered to be a failure.
The value of φ is calculated as:
φ = -log10(1 - F(timeSinceLastHeartbeat)
where F is the cumulative distribution function of a normal distribution with mean and standard deviation estimated from historical heartbeat inter-arrival times.
QuarantinedEvent
TBD
RemoteActorRef
RemoteActorRef - used to provide a local handle to an actor running in a remote process.
RemoteSettings
This class represents configuration information used when setting up remoting.
RemoteSettings.TransportSettings
TBD
RemoteTransportException
This exception is thrown when a general failure within a Akka.Remote.RemoteTransport occurs, such as the inability to start, wrong configuration, etc...
RemoteWatcher
INTERNAL API
Remote nodes with actors that are watched are monitored by this actor to be able to detect network failures and process crashes. Akka.Remote.RemoteActorRefProvider intercepts Watch and Unwatch system messages and sends corresponding RemoteWatcher.WatchRemote and RemoteWatcher.UnwatchRemote to this actor.
For a new node to be watched this actor periodically sends RemoteWatcher.Heartbeat to the peer actor on the other node, which replies with RemoteWatcher.HeartbeatRsp message back. The failure detector on the watching side monitors these heartbeat messages. If arrival of heartbeat messages stops it will be detected and this actor will publish Akka.Actor.AddressTerminated to the Akka.Event.AddressTerminatedTopic.
When all actors on a node have been unwatched it will stop sending heartbeat messages.
For bi-directional watch between two nodes the same thing will be established in both directions, but independent of each other.
RemoteWatcher.ExpectedFirstHeartbeat
TBD
RemoteWatcher.Heartbeat
TBD
RemoteWatcher.HeartbeatRsp
TBD
RemoteWatcher.HeartbeatTick
TBD
RemoteWatcher.ReapUnreachableTick
TBD
RemoteWatcher.Stats
TBD
RemoteWatcher.UnwatchRemote
TBD
RemoteWatcher.WatchCommand
TBD
RemoteWatcher.WatchRemote
TBD
RemotingErrorEvent
TBD
RemotingLifecycleEvent
Remote lifecycle events that are published to the EventStream when initialization / connect / disconnect events that occur during network operations
RemotingListenEvent
TBD
RemotingShutdownEvent
Event that is published when the remoting system terminates.
ThisActorSystemQuarantinedEvent
TBD
Interfaces
IFailureDetectorRegistry<T>
Interface for a registry of Akka FailureDetectors. New resources are implicitly registered when heartbeat is first called with the resource given as parameter.
Delegates
Clock
Abstraction of a clock that returns time in milliseconds. Can only be used to measure the elapsed time and is not related to any other notion of system or wall-clock time.