Uses of Class
edu.rice.cs.plt.collect.SnapshotSynchronizedSet

Packages that use SnapshotSynchronizedSet
edu.rice.cs.plt.collect Contains general-purpose extensions to and variations on the java.util collections framework. 
 

Uses of SnapshotSynchronizedSet in edu.rice.cs.plt.collect
 

Methods in edu.rice.cs.plt.collect that return SnapshotSynchronizedSet
static
<T> SnapshotSynchronizedSet<T>
SnapshotSynchronizedSet.make(Set<T> delegate)
          Call the constructor (allows T to be inferred).
static
<T> SnapshotSynchronizedSet<T>
SnapshotSynchronizedSet.makeHash()
          Call the constructor with an empty HashSet.
static
<T> SnapshotSynchronizedSet<T>
SnapshotSynchronizedSet.makeLinkedHash()
          Call the constructor with an empty LinkedHashSet.
static
<T> SnapshotSynchronizedSet<T>
SnapshotSynchronizedSet.makeTree()
          Call the constructor with an empty TreeSet.
static
<T> SnapshotSynchronizedSet<T>
CollectUtil.snapshotSynchronized(Set<T> s)
          Wrap s as a thread-safe set that produces snapshots to support concurrent iteration.