class Protocol::HTTP::Body::File

def close(error = nil)

@parameter error [Exception | Nil] the error that caused the file to be closed.

Close the file.
def close(error = nil)
	@file.close
	@remaining = 0
	
	super
end