sse

suspend fun HttpClient.sse(    request: HttpRequestBuilder.() -> Unit,     reconnectionTime: Duration? = null,     showCommentEvents: Boolean? = null,     showRetryEvents: Boolean? = null,     block: suspend ClientSSESession.() -> Unit)
suspend fun HttpClient.sse(    scheme: String? = null,     host: String? = null,     port: Int? = null,     path: String? = null,     request: HttpRequestBuilder.() -> Unit = {},     reconnectionTime: Duration? = null,     showCommentEvents: Boolean? = null,     showRetryEvents: Boolean? = null,     block: suspend ClientSSESession.() -> Unit)
suspend fun HttpClient.sse(    urlString: String,     request: HttpRequestBuilder.() -> Unit = {},     reconnectionTime: Duration? = null,     showCommentEvents: Boolean? = null,     showRetryEvents: Boolean? = null,     block: suspend ClientSSESession.() -> Unit)

Opens a block with ClientSSESession.