Hi, does http4k client support receiving SSE? If so, is there any information on how to implement that? I can't seem to find any info on that on the project site (only the server side or so it looks for me)...
I did a very fast rip off of the OkHttp one (just quick fixes of IntelliJ Kotlin from Java transcoding)
https://github.com/razvn/http4kbase/tree/test_sse
calling from a browser http://localhost:9000/{name} will launch a SseClient that calls the SseServer with the same url http://localhost:9000/{name} that sends some data and events.
The thing I see so far that does not work as I expected, when the client closes didn’t see the server onclose message sent to the client.