Uses of Interface
ca.odell.glazedlists.util.concurrent.ReadWriteLock
-
Packages that use ReadWriteLock Package Description ca.odell.glazedlists ca.odell.glazedlists.util.concurrent -
-
Uses of ReadWriteLock in ca.odell.glazedlists
Fields in ca.odell.glazedlists declared as ReadWriteLock Modifier and Type Field Description protected ReadWriteLock
AbstractEventList. readWriteLock
the read/write lock provides mutual exclusion to accessMethods in ca.odell.glazedlists that return ReadWriteLock Modifier and Type Method Description ReadWriteLock
AbstractEventList. getReadWriteLock()
Gets the lock required to share this list between multiple threads.ReadWriteLock
DebugList. getReadWriteLock()
Gets the lock required to share this list between multiple threads.ReadWriteLock
EventList. getReadWriteLock()
Gets the lock required to share this list between multiple threads.Methods in ca.odell.glazedlists with parameters of type ReadWriteLock Modifier and Type Method Description static <E> EventList<E>
GlazedLists. eventList(ListEventPublisher publisher, ReadWriteLock lock, java.util.Collection<? extends E> contents)
Creates a newEventList
with the givenListEventPublisher
andReadWriteLock
which contains the contents of the specifiedCollection
.static <E> EventList<E>
GlazedLists. eventListOf(ListEventPublisher publisher, ReadWriteLock lock, E... contents)
Creates a newEventList
with the givenListEventPublisher
andReadWriteLock
which contains the given elements.Constructors in ca.odell.glazedlists with parameters of type ReadWriteLock Constructor Description BasicEventList(int initialCapacity, ListEventPublisher publisher, ReadWriteLock readWriteLock)
Creates aBasicEventList
using the specified initial capacity,ListEventPublisher
andReadWriteLock
.BasicEventList(ListEventPublisher publisher, ReadWriteLock readWriteLock)
BasicEventList(ReadWriteLock readWriteLock)
Creates aBasicEventList
that uses the specifiedReadWriteLock
for concurrent access.CompositeList(ListEventPublisher publisher, ReadWriteLock lock)
CompositeList(ReadWriteLock lock)
Deprecated.replaced byCompositeList(ListEventPublisher, ReadWriteLock)
, because prebuilt member lists should share lock and publisher with the CompositeList.PluggableList(ListEventPublisher publisher, ReadWriteLock lock)
Constructs a PluggableList which uses the givenpublisher
andlock
. -
Uses of ReadWriteLock in ca.odell.glazedlists.util.concurrent
Classes in ca.odell.glazedlists.util.concurrent that implement ReadWriteLock Modifier and Type Class Description class
J2SE14ReadWriteLock
An implementation ofLockFactory
that has been derived from backport-util-concurrent.Methods in ca.odell.glazedlists.util.concurrent that return ReadWriteLock Modifier and Type Method Description ReadWriteLock
LockFactory. createReadWriteLock()
Create aReadWriteLock
.
-