Class ConcurrentHashSet<E>
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractSet<E>
-
- org.infinispan.commons.util.concurrent.ConcurrentHashSet<E>
-
- All Implemented Interfaces:
Serializable
,Iterable<E>
,Collection<E>
,Set<E>
@Deprecated public class ConcurrentHashSet<E> extends AbstractSet<E> implements Serializable
Deprecated.since 10.0, useConcurrentHashMap.newKeySet()
instead.A simple Set implementation backed by aConcurrentHashMap
to deal with the fact that the JDK does not have a proper concurrent Set implementation that uses efficient lock striping. Note that values are stored as keys in the underlying Map, with a static dummy object as value.- Since:
- 4.0
- Author:
- Manik Surtani
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected ConcurrentMap<E,Object>
map
Deprecated.
-
Constructor Summary
Constructors Constructor Description ConcurrentHashSet()
Deprecated.ConcurrentHashSet(int concurrencyLevel)
Deprecated.ConcurrentHashSet(int initSize, float loadFactor, int concurrencyLevel)
Deprecated.Params passed in to the underlying CHM.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
add(E o)
Deprecated.boolean
addAll(Collection<? extends E> c)
Deprecated.void
clear()
Deprecated.boolean
contains(Object o)
Deprecated.boolean
containsAll(Collection<?> c)
Deprecated.boolean
isEmpty()
Deprecated.Iterator<E>
iterator()
Deprecated.boolean
remove(Object o)
Deprecated.boolean
removeAll(Collection<?> c)
Deprecated.boolean
retainAll(Collection<?> c)
Deprecated.int
size()
Deprecated.Object[]
toArray()
Deprecated.<T> T[]
toArray(T[] a)
Deprecated.
-
-
-
Field Detail
-
map
protected final ConcurrentMap<E,Object> map
Deprecated.
-
-
Constructor Detail
-
ConcurrentHashSet
public ConcurrentHashSet()
Deprecated.
-
ConcurrentHashSet
public ConcurrentHashSet(int concurrencyLevel)
Deprecated.- Parameters:
concurrencyLevel
- passed in to the underlying CHM. SeeConcurrentHashMap(int, float, int)
javadocs for details.
-
ConcurrentHashSet
public ConcurrentHashSet(int initSize, float loadFactor, int concurrencyLevel)
Deprecated.Params passed in to the underlying CHM. SeeConcurrentHashMap(int, float, int)
javadocs for details.
-
-
Method Detail
-
size
public int size()
Deprecated.
-
isEmpty
public boolean isEmpty()
Deprecated.
-
contains
public boolean contains(Object o)
Deprecated.
-
toArray
public Object[] toArray()
Deprecated.
-
toArray
public <T> T[] toArray(T[] a)
Deprecated.
-
add
public boolean add(E o)
Deprecated.
-
remove
public boolean remove(Object o)
Deprecated.
-
containsAll
public boolean containsAll(Collection<?> c)
Deprecated.
-
addAll
public boolean addAll(Collection<? extends E> c)
Deprecated.
-
retainAll
public boolean retainAll(Collection<?> c)
Deprecated.
-
removeAll
public boolean removeAll(Collection<?> c)
Deprecated.
-
clear
public void clear()
Deprecated.
-
-