HTTPTransaction.sendBody

Send part or all of the egress message body to the Transport. If flow control is enabled, the chunk boundaries may not be respected. This method does not actually write the message out on the wire immediately. All writes happen at the end of the event loop at the earliest. Note: This method may be called zero or more times per message.

@param body Message body data; the Transport will take care of applying any necessary protocol framing, such as chunk headers.

class HTTPTransaction
void
sendBody
(
in ubyte[] body_
,
bool iseom = false
)

Meta