Class SyncSortedSet

  • All Implemented Interfaces:
    java.lang.Iterable, java.util.Collection, java.util.Set, java.util.SortedSet

    public class SyncSortedSet
    extends SyncSet
    implements java.util.SortedSet
    SyncSortedSets wrap Sync-based control around java.util.SortedSets. They support the following additional reader operations over SyncCollection: comparator, subSet, headSet, tailSet, first, last.

    [ Introduction to this package. ]

    See Also:
    SyncCollection
    • Constructor Summary

      Constructors 
      Constructor Description
      SyncSortedSet​(java.util.SortedSet set, ReadWriteLock rwl)
      Create a new SyncSortedSet protecting the given set, and using the given ReadWriteLock to control reader and writer methods.
      SyncSortedSet​(java.util.SortedSet set, Sync sync)
      Create a new SyncSortedSet protecting the given collection, and using the given sync to control both reader and writer methods.
      SyncSortedSet​(java.util.SortedSet set, Sync readLock, Sync writeLock)
      Create a new SyncSortedSet protecting the given set, and using the given pair of locks to control reader and writer methods.
    • Constructor Detail

      • SyncSortedSet

        public SyncSortedSet​(java.util.SortedSet set,
                             Sync sync)
        Create a new SyncSortedSet protecting the given collection, and using the given sync to control both reader and writer methods. Common, reasonable choices for the sync argument include Mutex, ReentrantLock, and Semaphores initialized to 1.
      • SyncSortedSet

        public SyncSortedSet​(java.util.SortedSet set,
                             ReadWriteLock rwl)
        Create a new SyncSortedSet protecting the given set, and using the given ReadWriteLock to control reader and writer methods.
      • SyncSortedSet

        public SyncSortedSet​(java.util.SortedSet set,
                             Sync readLock,
                             Sync writeLock)
        Create a new SyncSortedSet protecting the given set, and using the given pair of locks to control reader and writer methods.
    • Method Detail

      • baseSortedSet

        protected java.util.SortedSet baseSortedSet()
      • comparator

        public java.util.Comparator comparator()
        Specified by:
        comparator in interface java.util.SortedSet
      • first

        public java.lang.Object first()
        Specified by:
        first in interface java.util.SortedSet
      • last

        public java.lang.Object last()
        Specified by:
        last in interface java.util.SortedSet
      • subSet

        public java.util.SortedSet subSet​(java.lang.Object fromElement,
                                          java.lang.Object toElement)
        Specified by:
        subSet in interface java.util.SortedSet
      • headSet

        public java.util.SortedSet headSet​(java.lang.Object toElement)
        Specified by:
        headSet in interface java.util.SortedSet
      • tailSet

        public java.util.SortedSet tailSet​(java.lang.Object fromElement)
        Specified by:
        tailSet in interface java.util.SortedSet