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 ReadWriteLockAbstractEventList. readWriteLockthe read/write lock provides mutual exclusion to accessMethods in ca.odell.glazedlists that return ReadWriteLock Modifier and Type Method Description ReadWriteLockAbstractEventList. getReadWriteLock()Gets the lock required to share this list between multiple threads.ReadWriteLockDebugList. getReadWriteLock()Gets the lock required to share this list between multiple threads.ReadWriteLockEventList. 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 newEventListwith the givenListEventPublisherandReadWriteLockwhich contains the contents of the specifiedCollection.static <E> EventList<E>GlazedLists. eventListOf(ListEventPublisher publisher, ReadWriteLock lock, E... contents)Creates a newEventListwith the givenListEventPublisherandReadWriteLockwhich contains the given elements.Constructors in ca.odell.glazedlists with parameters of type ReadWriteLock Constructor Description BasicEventList(int initialCapacity, ListEventPublisher publisher, ReadWriteLock readWriteLock)Creates aBasicEventListusing the specified initial capacity,ListEventPublisherandReadWriteLock.BasicEventList(ListEventPublisher publisher, ReadWriteLock readWriteLock)BasicEventList(ReadWriteLock readWriteLock)Creates aBasicEventListthat uses the specifiedReadWriteLockfor 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 givenpublisherandlock. -
Uses of ReadWriteLock in ca.odell.glazedlists.util.concurrent
Classes in ca.odell.glazedlists.util.concurrent that implement ReadWriteLock Modifier and Type Class Description classJ2SE14ReadWriteLockAn implementation ofLockFactorythat has been derived from backport-util-concurrent.Methods in ca.odell.glazedlists.util.concurrent that return ReadWriteLock Modifier and Type Method Description ReadWriteLockLockFactory. createReadWriteLock()Create aReadWriteLock.
-