public interface FloatClockedSignalSourceVector extends FloatSignalSourceVector<FloatClockedSignalSource>, Process
float
whose observable state
is driven by a clock.
Time events, i.e. Process.init()
and Process.step(RealtimeContext)
,
affect all components of the aggregate. Effectively, each event is processed
by all components sequentially in iteration order. Conceptually, components
should be independent, such that the firing order makes no observable
difference. Behavior is undefined if an individual component occurs more
than once.FloatSignalSourceVector.Mutable<S extends FloatSignalSource>
Process.Proxy
Modifier and Type | Method and Description |
---|---|
static FloatClockedSignalSourceVector |
of(FloatClockedSignalSource... components)
Creates a new aggregate from the given array of components.
|
static FloatClockedSignalSourceVector |
of(List<? extends FloatClockedSignalSource> components)
Creates a new aggregate from the given list of components.
|
append, empty, iterate, map, of, of, of, of, repeat, singleton, sizeCompatibleWith, sizeCompatibleWith, sizeCompatibleWith, stored, zipWith
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray
parallelStream, removeIf, stream
afterEvery, andThen, compile, compileAsMainProcess, compileControlFlow, compileInitialization, every, getProcess, hasControlFlowIO, hasInitializationIO, init, probe, sequence, sequence, step
@SafeVarargs static FloatClockedSignalSourceVector of(FloatClockedSignalSource... components)
The resulting object is a view of the passed array; concurrent mutation of array elements is observed. For immutable aggregates, no reference to the array should be shared.
components
- the componentsNullPointerException
- if components == null
static FloatClockedSignalSourceVector of(List<? extends FloatClockedSignalSource> components)
The resulting object is a view of the passed list; concurrent mutation of list elements is observed. For immutable aggregates, no reference to the list should be shared.
components
- the componentsNullPointerException
- if components == null