class Concurrent::RubyExchanger::Node

def initialize(item)

def initialize(item)
  super()
  @Item      = item
  @Latch     = Concurrent::CountDownLatch.new
  self.value = nil
end

def item

def item
  @Item
end

def latch

def latch
  @Latch
end