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

org.jsimpledb.kv.mvcc.LockOwner Maven / Gradle / Ivy

The newest version!

/*
 * Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
 */

package org.jsimpledb.kv.mvcc;

import java.util.HashSet;

/**
 * Represents the owner of a {@link Lock} managed by a {@link LockManager}.
 *
 * 

* Each instance of this class represents a separate lock owner. * * @see LockManager */ public final class LockOwner { final HashSet locks = new HashSet<>(); /** * Constructor. */ public LockOwner() { } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy