See Also: AbstractQueuedLongSynchronizer Members
A version of Java.Util.Concurrent.Locks.AbstractQueuedSynchronizer in which synchronization state is maintained as a long. This class has exactly the same structure, properties, and methods as AbstractQueuedSynchronizer with the exception that all state-related parameters and results are defined as long rather than int. This class may be useful when creating synchronizers such as multilevel locks and barriers that require 64 bits of state.
See Java.Util.Concurrent.Locks.AbstractQueuedSynchronizer for usage notes and examples.