streams/src/main/java/org/gcube/data/streams/dsl/fold/InClause.java

35 lines
934 B
Java

package org.gcube.data.streams.dsl.fold;
import org.gcube.data.streams.Stream;
import org.gcube.data.streams.delegates.FoldedStream;
import org.gcube.data.streams.dsl.StreamClause;
import org.gcube.data.streams.dsl.StreamClauseEnv;
/**
* The clause of {@code fold} sentences in which a fold size is configured for
* the output stream.
*
* @author Fabio Simeoni
*
* @param <E> the type of stream elements
*/
public class InClause<E> extends StreamClause<E,StreamClauseEnv<E>> {
/**
* Creates an instance with an input {@link Stream}.
* @param stream the stream
*/
public InClause(Stream<E> stream) {
super(new StreamClauseEnv<E>(stream));
}
/**
* Returns a {@link Stream} that folds the element of the input {@link Stream} in lists of a given size.
* @param foldSize the size
* @return the stream
*/
public FoldedStream<E> in(int foldSize) {
return new FoldedStream<E>(env.stream(),foldSize);
}
}