Package org.apache.pekko.remote
Interface FailureDetectorRegistry<A>
- All Known Implementing Classes:
DefaultFailureDetectorRegistry
public interface FailureDetectorRegistry<A>
Interface for a registry of Pekko failure detectors. New resources are implicitly registered when heartbeat is first
called with the resource given as parameter.
type parameter A: - The type of the key that identifies a resource to be monitored by a failure detector
-
Method Summary
Modifier and TypeMethodDescriptionvoidRecords a heartbeat for a resource.booleanisAvailable(A resource) Returns true if the resource is considered to be up and healthy and returns false otherwise.booleanisMonitoring(A resource) Returns true if the failure detector has received any heartbeats and started monitoring of the resource.voidRemoves the heartbeat management for a resource.voidreset()Removes all resources and any associated failure detector state.
-
Method Details
-
heartbeat
Records a heartbeat for a resource. If the resource is not yet registered (i.e. this is the first heartbeat) then it is automatically registered. -
isAvailable
Returns true if the resource is considered to be up and healthy and returns false otherwise. For unregistered resources it returns true. -
isMonitoring
Returns true if the failure detector has received any heartbeats and started monitoring of the resource. -
remove
Removes the heartbeat management for a resource. -
reset
void reset()Removes all resources and any associated failure detector state.
-