blob: b2e002acb0f1ba138010a5c453cbbb8404c69d30 [file] [log] [blame]
/*
* Copyright (c) 2021 Eike Stepper (Loehne, Germany) and others.
* 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:
* Eike Stepper - initial API and implementation
*/
package org.eclipse.net4j.util.concurrent;
import java.util.concurrent.locks.Condition;
import java.util.concurrent.locks.ReentrantReadWriteLock;
/**
* @author Eike Stepper
* @since 3.16
*/
public final class ReentrantReadWriteAccess
{
private final ReentrantReadWriteLock lock;
private final Access readAccess;
private final Access writeAccess;
public ReentrantReadWriteAccess(boolean fair)
{
lock = new ReentrantReadWriteLock(fair);
readAccess = new Access(lock.readLock());
writeAccess = new Access(lock.writeLock());
}
public ReentrantReadWriteAccess()
{
this(false);
}
public ReentrantReadWriteLock getLock()
{
return lock;
}
public Access readAccess()
{
return readAccess;
}
public Access writeAccess()
{
return writeAccess;
}
public Condition newCondition()
{
return writeAccess.newCondition();
}
}