public class NullJiraClusterNodeHeartBeatDao extends Object implements TimedClusterNodeHeartBeatDao
| Constructor and Description |
|---|
NullJiraClusterNodeHeartBeatDao() |
| Modifier and Type | Method and Description |
|---|---|
Collection<String> |
findNodesWithHeartbeatsAfter(long time) |
Map<String,Long> |
getActiveNodesDatabaseTimeOffsets(long databaseActiveTime)
Returns each active cluster node's clock offset from the database clock.
|
Long |
getLastHeartbeatTime(String nodeId)
Returns the last time a heartbeat was sent by the given node.
|
String |
getNodeId()
Returns the globally unique Identifier for this cluster node.
|
void |
writeHeartBeat(long time)
Writes a heartbeat for this node at the given time.
|
@Nonnull public String getNodeId()
ClusterNodeHeartBeatDaogetNodeId in interface ClusterNodeHeartBeatDaopublic void writeHeartBeat(long time)
ClusterNodeHeartBeatDaoSystem.currentTimeMillis().writeHeartBeat in interface ClusterNodeHeartBeatDaotime - the time in millis to write as the heartbeat.@Nullable public Long getLastHeartbeatTime(@Nonnull String nodeId)
ClusterNodeHeartBeatDaoA null value indicates no heartbeats have been sent by this node.
getLastHeartbeatTime in interface ClusterNodeHeartBeatDaonodeId - the node@Nonnull public Collection<String> findNodesWithHeartbeatsAfter(long time)
findNodesWithHeartbeatsAfter in interface ClusterNodeHeartBeatDao@Nonnull public Map<String,Long> getActiveNodesDatabaseTimeOffsets(long databaseActiveTime)
TimedClusterNodeHeartBeatDaoThe returned map maps node IDs to their clock offset times in milliseconds. A clock offset time is the number of milliseconds difference between that node's system clock and the clock of the database. These values can be used to determine how synchronized the node's clocks are.
It is possible that a node's time offset value is returned as null if they have not registered
a heartbeat yet after they have started up or if they are upgrading their version and have not written a
database time value in the database yet.
getActiveNodesDatabaseTimeOffsets in interface TimedClusterNodeHeartBeatDaodatabaseActiveTime - the minimum database time a node should have in the system to regard it as active.
Nodes that registered their heartbeat with an associated database time less than this value will not
be returned.Copyright © 2002-2021 Atlassian. All Rights Reserved.