class Concurrent::WaitableList

def initialize

def initialize
  @mutex = Mutex.new
  @condition = Condition.new
  @list = []
end