class Protocol::HTTP::Body::Completable

def close(error = nil)

The calback is only invoked once, and before `super` is invoked.

Close the body and invoke the callback. If an error is given, it is passed to the callback.
def close(error = nil)
	if @callback
		@callback.call(error)
		@callback = nil
	end
	
	super
end