Uses of Interface
org.voltdb.stream.api.pipeline.VoltStreamSource
-
Uses of VoltStreamSource in org.voltdb.stream.api.pipeline
Modifier and TypeMethodDescription<T> VoltOpenStreamBuilder
<T> VoltStreamBuilder.consumeFromSource
(VoltStreamSource<T> source) Each stream must have one source. -
Uses of VoltStreamSource in org.voltdb.stream.source
Modifier and TypeClassDescriptionclass
Base class for simple sources that generate elements algorithmically.class
Generates a stream of data items from anIterable
.Modifier and TypeMethodDescriptionstatic <T> VoltStreamSource
<T> IterableSource.from
(Collection<T> given) Creates a source from the givenCollection
.static <T> VoltStreamSource
<T> IterableSource.iterate
(T... given) Creates a source from the provided elements.static VoltStreamSource
<Integer> IterableSource.range
(int start, int end) Creates a source that generates a range of integers fromstart
(inclusive) toend
(exclusive).