Class: Concurrent::LockFreeQueue::Node
- Inherits:
-
Synchronization::Object
- Object
- Synchronization::Object
- Concurrent::LockFreeQueue::Node
- Defined in:
- lib/concurrent-ruby-edge/concurrent/edge/lock_free_queue.rb
Instance Method Summary collapse
-
#initialize(item, successor) ⇒ Node
constructor
A new instance of Node.
- #item ⇒ Object
Constructor Details
#initialize(item, successor) ⇒ Node
Returns a new instance of Node.
11 12 13 14 15 16 |
# File 'lib/concurrent-ruby-edge/concurrent/edge/lock_free_queue.rb', line 11 def initialize(item, successor) super() # published through queue, no need to be volatile or final @Item = item self.successor = successor end |
Instance Method Details
#item ⇒ Object
18 19 20 |
# File 'lib/concurrent-ruby-edge/concurrent/edge/lock_free_queue.rb', line 18 def item @Item end |