Searched defs:initialDelay (Results 1 - 8 of 8) sorted by relevance

/forgerock/openam-v13/openam-audit/openam-audit-context/src/main/java/org/forgerock/openam/audit/context/
H A DAuditRequestContextPropagatingScheduledExecutorService.java63 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit) { argument
64 return ((ScheduledExecutorService) delegate).scheduleAtFixedRate(wrap(command), initialDelay, period, unit);
71 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit) { argument
72 return ((ScheduledExecutorService) delegate).scheduleWithFixedDelay(wrap(command), initialDelay, delay, unit);
/forgerock/openam/openam-audit/openam-audit-context/src/main/java/org/forgerock/openam/audit/context/
H A DAuditRequestContextPropagatingScheduledExecutorService.java63 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit) { argument
64 return ((ScheduledExecutorService) delegate).scheduleAtFixedRate(wrap(command), initialDelay, period, unit);
71 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit) { argument
72 return ((ScheduledExecutorService) delegate).scheduleWithFixedDelay(wrap(command), initialDelay, delay, unit);
/forgerock/opendj2/src/server/org/opends/server/api/
H A DMonitorProvider.java196 * @param initialDelay The time to delay first execution.
198 * @param unit The time unit of the initialDelay and period
202 long initialDelay,
211 SCHEDULER.scheduleAtFixedRate(updater, initialDelay,
201 scheduleUpdate(Runnable updater, long initialDelay, long period, TimeUnit unit) argument
/forgerock/opendj-b2.6/src/server/org/opends/server/api/
H A DMonitorProvider.java197 * @param initialDelay The time to delay first execution.
199 * @param unit The time unit of the initialDelay and period
203 long initialDelay,
212 SCHEDULER.scheduleAtFixedRate(updater, initialDelay,
202 scheduleUpdate(Runnable updater, long initialDelay, long period, TimeUnit unit) argument
/forgerock/opendj2.6.2/src/server/org/opends/server/api/
H A DMonitorProvider.java197 * @param initialDelay The time to delay first execution.
199 * @param unit The time unit of the initialDelay and period
203 long initialDelay,
212 SCHEDULER.scheduleAtFixedRate(updater, initialDelay,
202 scheduleUpdate(Runnable updater, long initialDelay, long period, TimeUnit unit) argument
/forgerock/opendj2-hg/src/server/org/opends/server/api/
H A DMonitorProvider.java196 * @param initialDelay The time to delay first execution.
198 * @param unit The time unit of the initialDelay and period
202 long initialDelay,
211 SCHEDULER.scheduleAtFixedRate(updater, initialDelay,
201 scheduleUpdate(Runnable updater, long initialDelay, long period, TimeUnit unit) argument
/forgerock/opendj2-jel-hg/src/server/org/opends/server/api/
H A DMonitorProvider.java197 * @param initialDelay The time to delay first execution.
199 * @param unit The time unit of the initialDelay and period
203 long initialDelay,
212 SCHEDULER.scheduleAtFixedRate(updater, initialDelay,
202 scheduleUpdate(Runnable updater, long initialDelay, long period, TimeUnit unit) argument
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/api/
H A DMonitorProvider.java183 * @param initialDelay The time to delay first execution.
185 * @param unit The time unit of the initialDelay and period
189 long initialDelay,
196 scheduledFuture = SCHEDULER.scheduleAtFixedRate(updater, initialDelay, period, unit);
188 scheduleUpdate(Runnable updater, long initialDelay, long period, TimeUnit unit) argument

Completed in 93 milliseconds