Searched refs:threadNamePrefix (Results 1 - 9 of 9) sorted by relevance

/forgerock/openam/openam-audit/openam-audit-context/src/main/java/org/forgerock/openam/audit/context/
H A DAMExecutorServiceFactory.java46 * @param threadNamePrefix The thread name prefix to use when generating new threads.
49 ScheduledExecutorService createScheduledService(int poolSize, String threadNamePrefix); argument
68 * @param threadNamePrefix The thread name prefix to use when generating new threads.
71 ExecutorService createFixedThreadPool(int pool, String threadNamePrefix); argument
90 * @param threadNamePrefix The thread name prefix to use when generating new threads.
93 ExecutorService createCachedThreadPool(String threadNamePrefix); argument
105 * @param threadNamePrefix The thread name prefix to use when generating new threads.
109 TimeUnit timeoutTimeunit, BlockingQueue<Runnable> runnables, String threadNamePrefix);
108 createThreadPool(int coreSize, int maxSize, long idleTimeout, TimeUnit timeoutTimeunit, BlockingQueue<Runnable> runnables, String threadNamePrefix) argument
H A DAuditRequestContextPropagatingExecutorServiceFactory.java48 public ScheduledExecutorService createScheduledService(int poolSize, String threadNamePrefix) { argument
49 return decorate(delegate.createScheduledService(poolSize, threadNamePrefix));
74 TimeUnit timeoutTimeunit, BlockingQueue<Runnable> runnables, String threadNamePrefix) {
76 coreSize, maxSize, idleTimeout, timeoutTimeunit, runnables, threadNamePrefix));
73 createThreadPool(int coreSize, int maxSize, long idleTimeout, TimeUnit timeoutTimeunit, BlockingQueue<Runnable> runnables, String threadNamePrefix) argument
H A DExtendedExecutorServiceFactory.java54 public ScheduledExecutorService createScheduledService(int poolSize, String threadNamePrefix) { argument
56 Executors.newScheduledThreadPool(poolSize, new NamedThreadFactory(threadNamePrefix));
63 TimeUnit timeoutTimeunit, BlockingQueue<Runnable> runnables, String threadNamePrefix) {
69 runnables, new NamedThreadFactory(threadNamePrefix));
62 createThreadPool(int coreSize, int maxSize, long idleTimeout, TimeUnit timeoutTimeunit, BlockingQueue<Runnable> runnables, String threadNamePrefix) argument
/forgerock/opendj2/src/server/org/opends/server/api/
H A DDirectoryThread.java128 private final String threadNamePrefix; field in class:DirectoryThread.Factory
138 * @param threadNamePrefix
141 public Factory(String threadNamePrefix) argument
143 if (threadNamePrefix == null) {
147 this.threadNamePrefix = threadNamePrefix;
158 return new DirectoryThread(r, threadNamePrefix + " "
/forgerock/opendj-b2.6/src/server/org/opends/server/api/
H A DDirectoryThread.java90 private final String threadNamePrefix; field in class:DirectoryThread.Factory
101 * @param threadNamePrefix
105 public Factory(String threadNamePrefix) argument
107 if (threadNamePrefix == null) {
111 this.threadNamePrefix = threadNamePrefix;
121 return new DirectoryThread(r, threadNamePrefix + " "
/forgerock/opendj2.6.2/src/server/org/opends/server/api/
H A DDirectoryThread.java129 private final String threadNamePrefix; field in class:DirectoryThread.Factory
139 * @param threadNamePrefix
142 public Factory(String threadNamePrefix) argument
144 if (threadNamePrefix == null) {
148 this.threadNamePrefix = threadNamePrefix;
159 return new DirectoryThread(r, threadNamePrefix + " "
/forgerock/opendj2-hg/src/server/org/opends/server/api/
H A DDirectoryThread.java128 private final String threadNamePrefix; field in class:DirectoryThread.Factory
138 * @param threadNamePrefix
141 public Factory(String threadNamePrefix) argument
143 if (threadNamePrefix == null) {
147 this.threadNamePrefix = threadNamePrefix;
158 return new DirectoryThread(r, threadNamePrefix + " "
/forgerock/opendj2-jel-hg/src/server/org/opends/server/api/
H A DDirectoryThread.java84 private final String threadNamePrefix; field in class:DirectoryThread.Factory
95 * @param threadNamePrefix
99 public Factory(String threadNamePrefix) argument
101 if (threadNamePrefix == null) {
105 this.threadNamePrefix = threadNamePrefix;
116 return new DirectoryThread(r, threadNamePrefix + " "
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/api/
H A DDirectoryThread.java125 private final String threadNamePrefix; field in class:DirectoryThread.Factory
135 * @param threadNamePrefix
138 public Factory(String threadNamePrefix) argument
140 if (threadNamePrefix == null) {
144 this.threadNamePrefix = threadNamePrefix;
153 return new DirectoryThread(r, threadNamePrefix + " "

Completed in 96 milliseconds