final case classStreamWithClose(enum: Enumerator[Array[Byte]]) extends ResultStreaming with Product with Serializable
Used for responses that have unknown length and should be delimited by
the connection closing. This is used for all HTTP 1.0 responses with
unknown length, since HTTP 1.0 doesn't support chunked encoding. It can
also be used for some HTTP 1.1 responses, if chunked encoding isn't
desired for some reason, e.g. see the Results.feed method.
Used for responses that have unknown length and should be delimited by the connection closing. This is used for all HTTP 1.0 responses with unknown length, since HTTP 1.0 doesn't support chunked encoding. It can also be used for some HTTP 1.1 responses, if chunked encoding isn't desired for some reason, e.g. see the
Results.feed
method.