Searched refs:nextRun (Results 1 - 5 of 5) sorted by relevance

/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DCacheCleanUpScheduler.java41 Date nextRun = new Date(((System.currentTimeMillis() +
43 pool.schedule(SPCache.requestHash, nextRun);
44 pool.schedule(SPCache.responseHash, nextRun);
45 pool.schedule(SPCache.mniRequestHash, nextRun);
46 pool.schedule(SPCache.relayStateHash, nextRun);
47 pool.schedule(SPCache.logoutRequestIDHash, nextRun);
48 pool.schedule(SPCache.reqParamHash, nextRun);
49 pool.schedule(SPCache.authnRequestHash, nextRun);
50 pool.schedule(SPCache.fedAccountHash, nextRun);
51 pool.schedule(SPCache.assertionByIDCache, nextRun);
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DCacheCleanUpScheduler.java44 Date nextRun = new Date(((currentTimeMillis() +
46 pool.schedule(SPCache.requestHash, nextRun);
47 pool.schedule(SPCache.responseHash, nextRun);
48 pool.schedule(SPCache.mniRequestHash, nextRun);
49 pool.schedule(SPCache.relayStateHash, nextRun);
50 pool.schedule(SPCache.logoutRequestIDHash, nextRun);
51 pool.schedule(SPCache.reqParamHash, nextRun);
52 pool.schedule(SPCache.authnRequestHash, nextRun);
53 pool.schedule(SPCache.fedAccountHash, nextRun);
54 pool.schedule(SPCache.assertionByIDCache, nextRun);
[all...]
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/common/
H A DPDPCache.java71 Date nextRun = new Date(((System.currentTimeMillis() +
73 pool.schedule(_cache, nextRun);
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/common/
H A DTimerPool.java60 private Date nextRun; field in class:TimerPool
150 if (nextRun != null) {
152 if (nextRun.getTime() <= now ) {
153 if ((task = (HeadTaskRunnable) taskList.remove(nextRun))
159 nextRun = (Date) taskList.firstKey();
160 long delay = nextRun.getTime() - now;
163 nextRun = null;
266 if ((nextRun == null) ||
267 (time.getTime() < nextRun.getTime())) {
268 nextRun
[all...]
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/common/
H A DTimerPool.java60 private Date nextRun; field in class:TimerPool
150 if (nextRun != null) {
152 if (nextRun.getTime() <= now ) {
153 if ((task = (HeadTaskRunnable) taskList.remove(nextRun))
159 nextRun = (Date) taskList.firstKey();
160 long delay = nextRun.getTime() - now;
163 nextRun = null;
266 if ((nextRun == null) ||
267 (time.getTime() < nextRun.getTime())) {
268 nextRun
[all...]

Completed in 22 milliseconds