A Buffer represents a sequence of zero or more bytes that can be written to or read from, and which expands as
necessary to accomodate any bytes written to it.
If you send an HTTP request with the header Expect set to the value 100-continue
and the server responds with an interim HTTP response with a status code of 100 and a continue handler
has been set using this method, then the handler will be called.
A map of all headers in the request, If the request contains multiple headers with the same key, the values
will be concatenated together into a single header with the same key value, with each value separated by a comma,
as specified here.
Returns a copy of a sub-sequence the Buffer as a String starting at position start
and ending at position end - 1 interpreted as a String in UTF-8 encoding
Tell the kernel to stream a file as specified by filename directly
from disk to the outgoing connection, bypassing userspace altogether
(where supported by the underlying operating system.
Tell the kernel to stream a file as specified by filename directly from disk to the outgoing connection, bypassing userspace altogether
(where supported by the underlying operating system.
If chunked is true, this response will use HTTP chunked encoding, and each call to write to the body
will correspond to a new HTTP chunk sent on the wire.