EventHttpRequest::sendReplyStart
Initiate a chunked reply
説明
public
void EventHttpRequest::sendReplyStart(
int
$code
,
string
$reason
)
This allows the caller to stream the reply back to the client and is useful
when either not all of the reply data is immediately available or when
sending very large replies.
The caller needs to supply data chunks with
EventHttpRequest::sendReplyChunk
and complete the reply by calling
EventHttpRequest::sendReplyEnd
.
パラメータ
-
code
-
The HTTP response code to send.
-
reason
-
A brief message to send with the response code.
参考
-
EventHttpRequest::sendReplyChunk
-
EventHttpRequest::sendReplyEnd