class Protocol::HTTP::Body::Completable

def close(error = nil)

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