Fix the javadoc of the WorkQueue.createQueue method
Change-Id: I03d7b3067db2de20376560bb712c1fa28fecf502
This commit is contained in:
@@ -110,8 +110,8 @@ public class WorkQueue {
|
||||
return defaultQueue;
|
||||
}
|
||||
|
||||
/** Create a new executor queue with one thread. */
|
||||
public Executor createQueue(final int poolsize, final String prefix) {
|
||||
/** Create a new executor queue. */
|
||||
public Executor createQueue(int poolsize, String prefix) {
|
||||
final Executor r = new Executor(poolsize, prefix);
|
||||
r.setContinueExistingPeriodicTasksAfterShutdownPolicy(false);
|
||||
r.setExecuteExistingDelayedTasksAfterShutdownPolicy(false);
|
||||
|
||||
Reference in New Issue
Block a user