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

org.eclipse.collections.impl.collection.mutable.AbstractSynchronizedMutableCollection Maven / Gradle / Ivy

There is a newer version: 12.0.0.M3
Show newest version
/*
 * Copyright (c) 2016 Goldman Sachs.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and Eclipse Distribution License v. 1.0 which accompany this distribution.
 * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
 * and the Eclipse Distribution License is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 */

package org.eclipse.collections.impl.collection.mutable;

import java.util.Collection;

import net.jcip.annotations.ThreadSafe;
import org.eclipse.collections.api.block.function.Function;
import org.eclipse.collections.api.block.function.Function0;
import org.eclipse.collections.api.block.function.Function2;
import org.eclipse.collections.api.block.function.Function3;
import org.eclipse.collections.api.block.function.primitive.DoubleFunction;
import org.eclipse.collections.api.block.function.primitive.FloatFunction;
import org.eclipse.collections.api.block.function.primitive.IntFunction;
import org.eclipse.collections.api.block.function.primitive.LongFunction;
import org.eclipse.collections.api.block.predicate.Predicate;
import org.eclipse.collections.api.block.predicate.Predicate2;
import org.eclipse.collections.api.block.procedure.Procedure2;
import org.eclipse.collections.api.collection.MutableCollection;
import org.eclipse.collections.api.list.MutableList;
import org.eclipse.collections.api.map.MutableMap;
import org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap;
import org.eclipse.collections.api.map.primitive.MutableObjectLongMap;
import org.eclipse.collections.api.tuple.Twin;
import org.eclipse.collections.impl.collection.AbstractSynchronizedRichIterable;

@ThreadSafe
public abstract class AbstractSynchronizedMutableCollection extends AbstractSynchronizedRichIterable implements MutableCollection
{
    protected AbstractSynchronizedMutableCollection(MutableCollection delegate)
    {
        this(delegate, null);
    }

    protected AbstractSynchronizedMutableCollection(MutableCollection delegate, Object lock)
    {
        super(delegate, lock);
    }

    @Override
    protected MutableCollection getDelegate()
    {
        return (MutableCollection) super.getDelegate();
    }

    @Override
    public boolean add(T o)
    {
        synchronized (this.getLock())
        {
            return this.getDelegate().add(o);
        }
    }

    @Override
    public boolean remove(Object o)
    {
        synchronized (this.getLock())
        {
            return this.getDelegate().remove(o);
        }
    }

    @Override
    public boolean addAll(Collection coll)
    {
        synchronized (this.getLock())
        {
            return this.getDelegate().addAll(coll);
        }
    }

    @Override
    public boolean removeAll(Collection coll)
    {
        synchronized (this.getLock())
        {
            return this.getDelegate().removeAll(coll);
        }
    }

    @Override
    public boolean retainAll(Collection coll)
    {
        synchronized (this.getLock())
        {
            return this.getDelegate().retainAll(coll);
        }
    }

    @Override
    public void clear()
    {
        synchronized (this.getLock())
        {
            this.getDelegate().clear();
        }
    }

    @Override
    public boolean removeIf(Predicate predicate)
    {
        synchronized (this.lock)
        {
            return this.getDelegate().removeIf(predicate);
        }
    }

    @Override
    public 

boolean removeIfWith(Predicate2 predicate, P parameter) { synchronized (this.lock) { return this.getDelegate().removeIfWith(predicate, parameter); } } @Override public boolean addAllIterable(Iterable iterable) { synchronized (this.getLock()) { return this.getDelegate().addAllIterable(iterable); } } @Override public boolean removeAllIterable(Iterable iterable) { synchronized (this.getLock()) { return this.getDelegate().removeAllIterable(iterable); } } @Override public boolean retainAllIterable(Iterable iterable) { synchronized (this.getLock()) { return this.getDelegate().retainAllIterable(iterable); } } @Override public

Twin> selectAndRejectWith( Predicate2 predicate, P parameter) { synchronized (this.lock) { return this.getDelegate().selectAndRejectWith(predicate, parameter); } } @Override public IV injectIntoWith( IV injectValue, Function3 function, P parameter) { synchronized (this.lock) { return this.getDelegate().injectIntoWith(injectValue, function, parameter); } } @Override public MutableMap groupByUniqueKey(Function function) { synchronized (this.lock) { return this.getDelegate().groupByUniqueKey(function); } } @Override public MutableMap aggregateInPlaceBy( Function groupBy, Function0 zeroValueFactory, Procedure2 mutatingAggregator) { synchronized (this.getLock()) { return this.getDelegate().aggregateInPlaceBy(groupBy, zeroValueFactory, mutatingAggregator); } } @Override public MutableMap aggregateBy( Function groupBy, Function0 zeroValueFactory, Function2 nonMutatingAggregator) { synchronized (this.getLock()) { return this.getDelegate().aggregateBy(groupBy, zeroValueFactory, nonMutatingAggregator); } } @Override public MutableObjectLongMap sumByInt(Function groupBy, IntFunction function) { synchronized (this.lock) { return this.getDelegate().sumByInt(groupBy, function); } } @Override public MutableObjectDoubleMap sumByFloat(Function groupBy, FloatFunction function) { synchronized (this.lock) { return this.getDelegate().sumByFloat(groupBy, function); } } @Override public MutableObjectLongMap sumByLong(Function groupBy, LongFunction function) { synchronized (this.lock) { return this.getDelegate().sumByLong(groupBy, function); } } @Override public MutableObjectDoubleMap sumByDouble(Function groupBy, DoubleFunction function) { synchronized (this.lock) { return this.getDelegate().sumByDouble(groupBy, function); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy