summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/concurrent/INodeBase.java
blob: cbe404edf6fee92f79099a9c3eed8ba21892a2d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2003-2013, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

package scala.collection.concurrent;



import java.util.concurrent.atomic.AtomicReferenceFieldUpdater;



abstract class INodeBase<K, V> extends BasicNode {
    
    public static final AtomicReferenceFieldUpdater<INodeBase, MainNode> updater = AtomicReferenceFieldUpdater.newUpdater(INodeBase.class, MainNode.class, "mainnode");
    
    public static final Object RESTART = new Object();
    
    public volatile MainNode<K, V> mainnode = null;
    
    public final Gen gen;
    
    public INodeBase(Gen generation) {
	gen = generation;
    }
    
    public BasicNode prev() {
	return null;
    }
    
}