Package org.apfloat.spi
Interface ExecutionStrategy
- All Known Implementing Classes:
ParallelExecutionStrategy
public interface ExecutionStrategy
Thread execution operations.
- Since:
- 1.9.0
- Version:
- 1.9.0
- Author:
- Mikko Tommila
-
Method Summary
-
Method Details
-
wait
While waiting for aFuture
to be completed, steal work from any running tasks and run it.While this method may functionally appear to be equivalent to just calling
future.get()
it should try its best to steal work from any other tasks submitted to theExecutorService
of the currentApfloatContext
. It may in fact steal work using multiple threads, if the currentApfloatContext
specifiesnumberOfProcessors
to be more than one.The purpose of this method is to allow keeping all threads of the
ExecutorService
(and CPU cores) maximally busy at all times, while also not running an excessive number of parallel threads (only as many threads as there are CPU cores).- Parameters:
future
- The Future to wait for.
-