Package net.engio.mbassy.common
Class AbstractConcurrentSet.Entry<T>
- java.lang.Object
-
- net.engio.mbassy.common.AbstractConcurrentSet.Entry<T>
-
- All Implemented Interfaces:
ISetEntry<T>
- Direct Known Subclasses:
StrongConcurrentSet.StrongEntry
,WeakConcurrentSet.WeakEntry
- Enclosing class:
- AbstractConcurrentSet<T>
public abstract static class AbstractConcurrentSet.Entry<T> extends java.lang.Object implements ISetEntry<T>
-
-
Field Summary
Fields Modifier and Type Field Description private AbstractConcurrentSet.Entry<T>
next
private AbstractConcurrentSet.Entry<T>
predecessor
-
Constructor Summary
Constructors Modifier Constructor Description protected
Entry()
protected
Entry(AbstractConcurrentSet.Entry<T> next)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
AbstractConcurrentSet.Entry<T>
next()
void
remove()
-
-
-
Field Detail
-
next
private AbstractConcurrentSet.Entry<T> next
-
predecessor
private AbstractConcurrentSet.Entry<T> predecessor
-
-
Constructor Detail
-
Entry
protected Entry(AbstractConcurrentSet.Entry<T> next)
-
Entry
protected Entry()
-
-