Uses of Interface
elki.parallel.variables.SharedVariable
-
Packages that use SharedVariable Package Description elki.parallel Parallel processing core for ELKI.elki.parallel.variables Variables are instantiated for each thread, and allow passing values from one processor to another within the same thread. -
-
Uses of SharedVariable in elki.parallel
Fields in elki.parallel with type parameters of type SharedVariable Modifier and Type Field Description private java.util.HashMap<SharedVariable<?>,SharedVariable.Instance<?>>
ParallelExecutor.BlockArrayRunner. variables
Variables map.private java.util.HashMap<SharedVariable<?>,SharedVariable.Instance<?>>
SingleThreadedExecutor.SingleThreadedRunner. variables
Variables map.Methods in elki.parallel with parameters of type SharedVariable Modifier and Type Method Description <I extends SharedVariable.Instance<?>>
IExecutor. getInstance(SharedVariable<I> parent)
Get a channel for this executor.<I extends SharedVariable.Instance<?>>
IParallelExecutor.BlockArrayRunner. getInstance(SharedVariable<I> parent)
<I extends SharedVariable.Instance<?>>
ISingleThreadedExecutor.SingleThreadedRunner. getInstance(SharedVariable<I> parent)
-
Uses of SharedVariable in elki.parallel.variables
Classes in elki.parallel.variables that implement SharedVariable Modifier and Type Class Description class
SharedDouble
Direct channel connecting two processors.class
SharedInteger
Direct channel connecting two processors.class
SharedObject<T>
Variable to share between different processors (within one thread only!)
-