class Protocol::HTTP::Body::Writable

def close_write(error = nil)

@parameter error [Exception] The error that caused this body to be closed, if any.

Signal that no more data will be written to the body.
def close_write(error = nil)
	@error ||= error
	@queue.close
end