1) wants to send one body and display all values ` Log.d("test", "Received data:" + serverSentEvent.getData()); Log.d("test", "Received event:" + serverSentEvent.getEvent()); Log.d("test", "Received id:" + serverSentEvent.getLastId()); ` 2) this is example code: [https://www.w3schools.com/html/html5_serversentevents.asp](https://www.w3schools.com/html/html5_serversentevents.asp) [https://www.w3schools.com/html/demo_sse.php](https://www.w3schools.com/html/demo_sse.php) ` <?php header('Content-Type: text/event-stream'); header('Cache-Control: no-cache'); $time = date('r'); echo "data: The server time is: {$time}\n\n"; flush(); ?> ` the end of the message is` \n\n` And RxSSE split event. if i will have this in msg is problem and i use : '\u0004' [https://www.fileformat.info/info/unicode/char/0004/index.htm](https://www.fileformat.info/info/unicode/char/0004/index.htm) END OF TRANSMISSION can i use this Unicode to split? and how..
wants to send one body and display all values
`
`
this is example code:
https://www.w3schools.com/html/html5_serversentevents.asp
https://www.w3schools.com/html/demo_sse.php
`
the end of the message is\n\n`And RxSSE split event.
if i will have this in msg is problem and i use :
'\u0004'
https://www.fileformat.info/info/unicode/char/0004/index.htm
END OF TRANSMISSION
can i use this Unicode to split? and how..