Example usage for java.util.concurrent.locks ReentrantLock subclass-usage

List of usage examples for java.util.concurrent.locks ReentrantLock subclass-usage

Introduction

In this page you can find the example usage for java.util.concurrent.locks ReentrantLock subclass-usage.

Usage

From source file DeadlockDetectingLock.java

public class DeadlockDetectingLock extends ReentrantLock {
    // List of deadlock detecting locks.
    // This array is not thread safe, and must be externally synchronized
    //    by the class lock. Hence, it should only be called by static
    //    methods.
    private static List deadlockLocksRegistry = new ArrayList();

From source file jp.terasoluna.fw.web.thin.LimitedLock.java

/**
 * ?bNXbh???A?bNXbhf@\??bNNX?B
 * <p>
 * Web?AZbV???Asynchronized?A ??s?[U???A Xbh?L(Xbh?bN?)?B<br>
 * <ol>
 * <li>[X|X???s</li>

From source file AlternateDeadlockDetectingLock.java

public class AlternateDeadlockDetectingLock extends ReentrantLock {
    // List of deadlock detecting locks.
    // This array is not thread safe, and must be externally synchronized
    //    by the class lock. Hence, it should only be called by static
    //    methods.
    private static List deadlockLocksRegistry = new ArrayList();

From source file com.zbt.trie.linklist.SimpleTrie.java

/**
 * Represents an ordered list of words used for no other task than to look up if
 * a word is on the list. The words are sorted by Unicode value.
 * 
 * Note: The structure uses a delimiter to signal the end of words internally,
 * this means the delimiter may never occur in the words passed to the list.