org.infinispan.stream.impl.intops.object.MapOperation Maven / Gradle / Ivy
package org.infinispan.stream.impl.intops.object;
import org.infinispan.factories.ComponentRegistry;
import org.infinispan.stream.impl.intops.IntermediateOperation;
import java.util.function.Function;
import java.util.stream.Stream;
/**
* Performs map to operation on a regular {@link Stream}
* @param the type of the input stream
* @param the type of the output stream
*/
public class MapOperation implements IntermediateOperation, O, Stream> {
private final Function super I, ? extends O> function;
public MapOperation(Function super I, ? extends O> function) {
this.function = function;
}
@Override
public Stream perform(Stream stream) {
return stream.map(function);
}
@Override
public void handleInjection(ComponentRegistry registry) {
registry.wireDependencies(function);
}
public Function super I, ? extends O> getFunction() {
return function;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy