Searched refs:timersToCreate (Results 1 - 2 of 2) sorted by relevance

/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/common/
H A DTimerPool.java93 * @param timersToCreate Number of threads in the TimerPool after creation
96 private void createThreads(int timersToCreate) { argument
97 if (timersToCreate > poolSize) {
98 timersToCreate = poolSize;
100 for (int i = currentThreadCount; i < timersToCreate; i++) {
105 currentThreadCount = timersToCreate;
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/common/
H A DTimerPool.java93 * @param timersToCreate Number of threads in the TimerPool after creation
96 private void createThreads(int timersToCreate) { argument
97 if (timersToCreate > poolSize) {
98 timersToCreate = poolSize;
100 for (int i = currentThreadCount; i < timersToCreate; i++) {
105 currentThreadCount = timersToCreate;

Completed in 217 milliseconds