in src/common/src/aws/sdk/kotlin/crt/http/HttpStreamResponseHandler.kt [25:41]
public fun onResponseHeaders(
stream: HttpStream,
responseStatusCode: Int,
blockType: Int,
nextHeaders: List<HttpHeader>?
)
/**
* Called from Native once all HTTP Headers are processed. Will not be called if there are no Http Headers in the
* response. Guaranteed to be called exactly once if there is at least 1 Header.
*
* @param stream The HttpStream object
* @param blockType The type of the header block, corresponds to [HttpHeaderBlock]
*/
public fun onResponseHeadersDone(stream: HttpStream, blockType: Int) {
/* Optional Callback, do nothing by default */
}