Skip to content

Commit 4a615bc

Browse files
committed
Fix README
1 parent 23a7bb0 commit 4a615bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

streaming/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Streaming Module
22

3-
Generic Server-Sent Events (SSE) client library for Android. This module is responsible for connecting to an SSE endpoint, managing the connection lifecycle, and delivering raw parsed events to the consumer. It has **no knowledge of application-level message semantics** (e.g. Split notifications, authentication, or JWT tokens).
3+
Generic Server-Sent Events (SSE) client library. This module is responsible for connecting to an SSE endpoint, managing the connection lifecycle, and delivering raw parsed events. It has **no knowledge of application-level message semantics** (e.g. Split notifications, authentication, or JWT tokens).
44

55
## Architecture
66

@@ -37,7 +37,7 @@ Generic Server-Sent Events (SSE) client library for Android. This module is resp
3737
| `EventSourceClient` | Interface for a generic SSE client. Defines `connect(URI, EventHandler)` and `disconnect()`. |
3838
| `EventSourceClient.EventHandler` | Callback interface with `onOpen()`, `onMessage(Map)`, and `onError(boolean)`. |
3939
| `EventSourceClientImpl` | Default implementation that reads an SSE stream line-by-line and dispatches parsed events. |
40-
| `EventStreamParser` | Parses raw SSE stream lines into field→value maps following the [W3C EventSource spec](https://www.w3.org/TR/2009/WD-eventsource-20090421/#references). |
40+
| `EventStreamParser` | Parses raw SSE stream lines into field→value maps. |
4141

4242
### SPI (Service Provider Interfaces)
4343

0 commit comments

Comments
 (0)