Lines Matching refs:flushDelay
67 java.util.prefs.flushDelay property (unlike FileSystemPreferences).
107 private static long flushDelay = -1; // in seconds (min 5, default 60)
271 // at most flushDelay() seconds.
282 timer().schedule(flushTimerTask, flushDelay() * 1000);
287 private static synchronized long flushDelay()
289 if (flushDelay == -1) {
292 flushDelay = Math.max(5, Integer.parseInt(System.getProperty("java.util.prefs.flushDelay", "60")));
294 flushDelay = 60;
297 return flushDelay;