Uses of Interface
org.eclipse.collections.api.bag.ParallelBag
-
Packages that use ParallelBag Package Description org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag.org.eclipse.collections.impl.lazy.parallel.bag -
-
Uses of ParallelBag in org.eclipse.collections.api.bag
Subinterfaces of ParallelBag in org.eclipse.collections.api.bag Modifier and Type Interface Description interfaceParallelUnsortedBag<T>Methods in org.eclipse.collections.api.bag that return ParallelBag Modifier and Type Method Description ParallelBag<T>ParallelBag. reject(Predicate<? super T> predicate)Creates a parallel iterable for rejecting elements from the current iterable.<P> ParallelBag<T>ParallelBag. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)ParallelBag<T>ParallelBag. select(Predicate<? super T> predicate)Creates a parallel iterable for selecting elements from the current iterable.<S> ParallelBag<S>ParallelBag. selectInstancesOf(java.lang.Class<S> clazz)<P> ParallelBag<T>ParallelBag. selectWith(Predicate2<? super T,? super P> predicate, P parameter) -
Uses of ParallelBag in org.eclipse.collections.api.bag.sorted
Subinterfaces of ParallelBag in org.eclipse.collections.api.bag.sorted Modifier and Type Interface Description interfaceParallelSortedBag<T> -
Uses of ParallelBag in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable that return ParallelBag Modifier and Type Method Description ParallelBag<T>SynchronizedSortedBag. asParallel(java.util.concurrent.ExecutorService executorService, int batchSize) -
Uses of ParallelBag in org.eclipse.collections.impl.lazy.parallel.bag
Classes in org.eclipse.collections.impl.lazy.parallel.bag that implement ParallelBag Modifier and Type Class Description classAbstractParallelUnsortedBag<T,B extends UnsortedBagBatch<T>>classNonParallelUnsortedBag<T>classParallelCollectUnsortedBag<T,V>(package private) classParallelSelectUnsortedBag<T>
-