class Hamster::Stream

def initialize(head, &tail)

def initialize(head, &tail)
  @head = head
  @tail = tail
  @mutex = Mutex.new
end