| Package | Description |
|---|---|
| javascalautils.concurrent |
Contains utilities for concurrent/asynchronous programming.
|
| Modifier and Type | Method and Description |
|---|---|
static Executor |
Executors.create(Executor threadPool)
Creates an executor that uses the provided Java concurrent executor for the actual job processing
|
static Executor |
Executors.createCachedThreadPoolExecutor(ThreadFactory threadFactory)
Creates an executor that uses the
Executors.newCachedThreadPool(ThreadFactory). |
static Executor |
Executors.createFixedThreadPoolExecutor(int threads,
ThreadFactory threadFactory)
Creates an executor that uses the
Executors.newFixedThreadPool(int,ThreadFactory) |
Copyright © 2015. All rights reserved.