Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for rotateExpiredKeys (0.27 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/jcifs/util/SecureKeyManager.java

                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);
            }
        }
    
        /**
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 21.5K bytes
    - Click Count (0)
Back to Top