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 aFutureto 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 theExecutorServiceof the currentApfloatContext. It may in fact steal work using multiple threads, if the currentApfloatContextspecifiesnumberOfProcessorsto 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.
-