class Protocol::HTTP::Body::Streamable

def close(error = nil)

def close(error = nil)
	if @body
		super
		
		@callback.call(error)
		
		@body = nil
	end
end