class Hamster::Stream

def vivify

def vivify
  @lock.synchronize do
    unless @block.nil?
      @target = @block.call
      @block = nil
    end
  end
  @target
end