- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getHeartbeatFailures (0.06 sec)
-
src/main/java/jcifs/internal/witness/WitnessClient.java
} // Normal polling interval: max 5 seconds, increased based on failures long pollInterval = Math.min(MAX_POLL_INTERVAL, BASE_POLL_INTERVAL + (registration.getHeartbeatFailures() * 500)); Thread.sleep(pollInterval); } catch (InterruptedException e) { log.debug("Async notification monitoring interrupted for {}", registrationId);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessRegistration.java
this.heartbeatFailures++; } /** * Gets the number of consecutive heartbeat failures. * * @return the number of consecutive heartbeat failures */ public int getHeartbeatFailures() { return heartbeatFailures; } /** * Checks if this registration has expired based on the timeout. * * @param timeoutMs the timeout in milliseconds
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 6.7K bytes - Viewed (0)