class Protocol::Rack::Body::Streaming::Output

def close

def close
	@block = nil
end

def empty?

def empty?
	true
end

def initialize(block)

def initialize(block)
	@block = block
end

def write(chunk)

def write(chunk)
	@block.call(chunk)
end