class Protocol::HTTP::Body::Stream

def write_nonblock(buffer, exception: nil)

@returns [Integer] The number of bytes written.
@parameter exception [Boolean] Whether to raise an exception if the write would block, currently ignored.
@parameter buffer [String] The data to write.

Provided for compatibility with IO-like objects.

Write data to the stream using {write}.
def write_nonblock(buffer, exception: nil)
	write(buffer)
end