bufferOutput property

bool bufferOutput
getter/setter pair

Whether or not this instance should buffer its output or send it right away.

In general, output should be buffered and therefore this value defaults to 'true'.

For long-running requests where data may be made available over time, this value can be set to 'false' to emit bytes to the HTTP client as they are provided.

This property has no effect if body is not a Stream.

Implementation

bool bufferOutput = true;