Function endChunked [src]

Writes the end-of-stream message and any optional trailers, flushing the underlying stream. Asserts that the BodyWriter is using transfer-encoding: chunked. Respects the value of isEliding to omit all data after the headers. See also: endChunkedUnflushed end

Prototype

pub fn endChunked(w: *BodyWriter, options: EndChunkedOptions) Error!void

Parameters

w: *BodyWriteroptions: EndChunkedOptions

Possible Errors

WriteFailed Error

See the Writer implementation for detailed diagnostics.

Source

pub fn endChunked(w: *BodyWriter, options: EndChunkedOptions) Error!void { try endChunkedUnflushed(w, options); try w.http_protocol_output.flush(); }