package org.eclipse.collections.impl.lazy.parallel;
import org.eclipse.collections.api.ParallelIterable;
import org.eclipse.collections.api.annotation.Beta;
import org.eclipse.collections.api.block.function.Function;
import org.eclipse.collections.api.block.function.Function2;
import org.eclipse.collections.api.block.predicate.Predicate;
import org.eclipse.collections.api.block.predicate.Predicate2;
import org.eclipse.collections.api.multimap.Multimap;
@Beta
public final class SynchronizedParallelIterable<T> extends AbstractSynchronizedParallelIterable<T, ParallelIterable<T>>
{
public SynchronizedParallelIterable(ParallelIterable<T> delegate, Object lock)
{
super(delegate, lock);
}
@Override
public ParallelIterable<T> asUnique()
{
return this.wrap(this.delegate.asUnique());
}
@Override
public ParallelIterable<T> select(Predicate<? super T> predicate)
{
return this.wrap(this.delegate.select(predicate));
}
@Override
public <P> ParallelIterable<T> selectWith(Predicate2<? super T, ? super P> predicate, P parameter)
{
return this.wrap(this.delegate.selectWith(predicate, parameter));
}
@Override
public ParallelIterable<T> reject(Predicate<? super T> predicate)
{
return this.wrap(this.delegate.reject(predicate));
}
@Override
public <P> ParallelIterable<T> rejectWith(Predicate2<? super T, ? super P> predicate, P parameter)
{
return this.wrap(this.delegate.rejectWith(predicate, parameter));
}
@Override
public <S> ParallelIterable<S> selectInstancesOf(Class<S> clazz)
{
return this.wrap(this.delegate.selectInstancesOf(clazz));
}
@Override
public <V> ParallelIterable<V> collect(Function<? super T, ? extends V> function)
{
return this.wrap(this.delegate.collect(function));
}
@Override
public <P, V> ParallelIterable<V> collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter)
{
return this.wrap(this.delegate.collectWith(function, parameter));
}
@Override
public <V> ParallelIterable<V> collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function)
{
return this.wrap(this.delegate.collectIf(predicate, function));
}
@Override
public <V> ParallelIterable<V> flatCollect(Function<? super T, ? extends Iterable<V>> function)
{
return this.wrap(this.delegate.flatCollect(function));
}
@Override
public <V> Multimap<V, T> groupBy(Function<? super T, ? extends V> function)
{
synchronized (this.lock)
{
return this.delegate.groupBy(function);
}
}
@Override
public <V> Multimap<V, T> groupByEach(Function<? super T, ? extends Iterable<V>> function)
{
synchronized (this.lock)
{
return this.delegate.groupByEach(function);
}
}
}