King River Lee
06/02/2023, 4:50 AM"/sse/{name}" _bind_ *{* sse: Sse *->*
sse.onClose *{* _println_("sse closing") *}*
Flowable.just(1, 2, 3, 4, 5, 6, 7).forEach *{*
sse.send(SseMessage.Data(*it*.toString()))
Thread.sleep(300)
}
sse.close()
}