- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for scheduleWithFixedDelay (0.11 sec)
-
src/main/java/jcifs/util/ResourceManager.java
* Start the cleanup task */ private void startCleanupTask() { if (cleanupTask != null) { cleanupTask.cancel(false); } cleanupTask = cleanupExecutor.scheduleWithFixedDelay(() -> { try { checkForLeaks(); performCleanup(); } catch (Exception e) { log.error("Error during resource cleanup", e); }Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.2K bytes - Viewed (0) -
src/main/java/jcifs/util/AuthenticationRateLimiter.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/jcifs/util/SmbCircuitBreaker.java
} log.info("[{}] Circuit breaker closed and resources cleaned up", name); } private void startDynamicThresholdAdjustment() { thresholdAdjustmentTask = scheduler.scheduleWithFixedDelay(this::performDynamicThresholdAdjustment, 30, 30, TimeUnit.SECONDS); log.debug("[{}] Started dynamic threshold adjustment task", name); } private void performDynamicThresholdAdjustment() {Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 33.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/MultiChannelManager.java
throw new CIFSException("Failed to create CIFSContext for multi-channel transport", e); } } private void startHealthCheckTask() { healthCheckExecutor.scheduleWithFixedDelay(this::performHealthCheck, healthCheckInterval, healthCheckInterval, TimeUnit.MILLISECONDS); } private void performHealthCheck() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 20.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportPoolImpl.java
* Start proactive health checking */ private void startProactiveHealthChecking() { if (proactiveHealthCheckEnabled && healthCheckTask == null) { healthCheckTask = healthCheckExecutor.scheduleWithFixedDelay(this::performProactiveHealthCheck, proactiveCheckInterval, proactiveCheckInterval, TimeUnit.MILLISECONDS);Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 33.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/LeaseManager.java
if (cleanupInterval <= 0) { cleanupInterval = DEFAULT_LEASE_CLEANUP_INTERVAL; } final long finalCleanupInterval = cleanupInterval; this.cleanupExecutor.scheduleWithFixedDelay(() -> cleanupExpiredLeases(finalCleanupInterval * 2), cleanupInterval, cleanupInterval, TimeUnit.MILLISECONDS); } /** * Lease entry containing lease state information */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 18.8K bytes - Viewed (0) -
src/main/java/jcifs/util/SecureKeyManager.java
if (rotationTask != null) { rotationTask.cancel(false); } // Schedule new rotation task if (intervalMillis > 0) { rotationTask = rotationScheduler.scheduleWithFixedDelay(this::rotateExpiredKeys, intervalMillis, intervalMillis, java.util.concurrent.TimeUnit.MILLISECONDS); log.info("Key rotation configured with interval: {} ms", intervalMillis); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 21.5K bytes - Viewed (0)