org.infinispan.stream.impl.intops.UnorderedOperation Maven / Gradle / Ivy
package org.infinispan.stream.impl.intops;
import java.util.stream.BaseStream;
/**
* Performs unordered operation on a {@link BaseStream}
* @param the type of the stream
* @param the stream type
*/
public class UnorderedOperation>
implements IntermediateOperation {
@Override
public BaseStream perform(BaseStream stream) {
return stream.unordered();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy