Click or drag to resize
Akka.NETIFailureDetectorRegistryT Interface
Interface for a registry of Akka FailureDetectors. New resources are implicitly registered when heartbeat is first called with the resource given as parameter.

Namespace:  Akka.Remote
Assembly:  Akka.Remote (in Akka.Remote.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public interface IFailureDetectorRegistry<in T>

Type Parameters

T
TBD

The IFailureDetectorRegistryT type exposes the following members.

Methods
  NameDescription
Public methodHeartbeat
Records a heartbeat for a resource. If the resource is not yet registered (i.e. this is the first heartbeat) then is it automatically registered.
Public methodIsAvailable
Returns true if the resource is considered to be up and healthy, false otherwise. For unregistered resources it returns true.
Public methodIsMonitoring
Returns true if the failure detector has received any heartbeats and started monitoring the resource.
Public methodRemove
Remove the heartbeat management for a resource
Public methodReset
Removes all resources and any associated failure detector state.
Top
See Also