THIS IS A TEST INSTANCE. ALL YOUR CHANGES WILL BE LOST!!!!
...
Scrollbar |
---|
...
Parallel Execution
The ParallelExecutor service allows a computation to occur in parallel.
It can be used in two ways. First, with an explicit Future:
Code Block | ||||
---|---|---|---|---|
| ||||
Future<String> future = executor.invoke(new Invokable<String>() { ... }); |
...
Another alternative will return an object proxy, not a Future:
Code Block | ||||
---|---|---|---|---|
| ||||
RSSFeed feed = executor.invoke(RSSFeed.class, new Invokable<RSSFeed>() { ... }); |
...
tapestry.thread-pool.queue-size
Since | ||
---|---|---|
| ||
Defaults to 100.
...
Scrollbar |
---|