機能 #569
サーバ側から通知は Server-Sent Events (SSE) を利用するように変更
関連するチケット
みぞ @mizo0203 さんが4年以上前に更新
- ステータス を 進行中 から 解決 に変更
- 進捗率 を 40 から 80 に変更
更新履歴 github|0c9f8b2a05f082ff78e23007d0ed25c5f1321fc5 で適用されました。
みぞ @mizo0203 さんが4年以上前に更新
- ステータス を 解決 から 完了 に変更
- 進捗率 を 80 から 100 に変更
修正前:
$ curl -i http://localhost:8080/fastest-finger-first/stream HTTP/1.1 200 OK Server: Apache-Coyote/1.1 Content-Type: application/octet-stream;charset=UTF-8 Transfer-Encoding: chunked Date: Sat, 28 Mar 2020 07:50:50 GMT {"delayMs":"","hero":"hero","button":"<input class=\"button is-primary is-large is-fullwidth\" onclick=\"send(7);\" type=\"button\" value=\"PUSH !\"/>"}
修正後:
$ curl -i http://localhost:8080/fastest-finger-first/stream HTTP/1.1 200 OK Server: Apache-Coyote/1.1 Cache-Control: no-cache Connection: keep-alive Content-Type: text/event-stream;charset=UTF-8 Transfer-Encoding: chunked Date: Sat, 28 Mar 2020 07:50:44 GMT event: open event: message data: {"delayMs":"","hero":"hero","button":"<input class=\"button is-primary is-large is-fullwidth\" onclick=\"send(5);\" type=\"button\" value=\"PUSH !\"/>"}