public interface IntClockedSignalSourceVector extends IntSignalSourceVector<IntClockedSignalSource>, Process
int
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.IntSignalSourceVector.Mutable<S extends IntSignalSource>
Process.Proxy
Modifier and Type | Method and Description |
---|---|
static IntClockedSignalSourceVector |
of(IntClockedSignalSource... components)
Creates a new aggregate from the given array of components.
|
static IntClockedSignalSourceVector |
of(List<? extends IntClockedSignalSource> 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 IntClockedSignalSourceVector of(IntClockedSignalSource... 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 IntClockedSignalSourceVector of(List<? extends IntClockedSignalSource> 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