/******************************************************************************* * Copyright (c) 2014 Bruno Medeiros and other Contributors. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Bruno Medeiros - initial API and implementation *******************************************************************************/ package melnorme.lang.utils.concurrency; import melnorme.lang.utils.EntryMap; import melnorme.utilbox.core.fntypes.CallableX; public abstract class SynchronizedEntryMap<KEY, ENTRY> extends EntryMap<KEY, ENTRY> { @Override public ENTRY getEntry(KEY key) { synchronized(this) { return super.getEntry(key); } } @Override public ENTRY getEntryOrNull(KEY key) { synchronized(this) { return super.getEntryOrNull(key); } } @Override public ENTRY removeEntry(KEY key) { synchronized(this) { return super.removeEntry(key); } } public void runSynchronized(Runnable runnable) { synchronized(this) { runnable.run(); } } public <R, E extends Exception> R runSynchronized(CallableX<R, E> callable) throws E { synchronized(this) { return callable.call(); } } }