Package elki.parallel.variables
Interface SharedVariable.Instance<T>
-
- Type Parameters:
T
- Payload type
- All Known Implementing Classes:
SharedDouble.Instance
,SharedInteger.Instance
,SharedObject.Instance
- Enclosing interface:
- SharedVariable<I extends SharedVariable.Instance<?>>
public static interface SharedVariable.Instance<T>
Instance for a single execution thread.- Author:
- Erich Schubert
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
get()
Get the current valuevoid
set(T data)
Set a new value
-