All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.stream.impl.intops.UnorderedOperation Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy