dotnet-eventsource icon indicating copy to clipboard operation
dotnet-eventsource copied to clipboard

Server-sent events (SSE) client implementation for .NET

Results 4 dotnet-eventsource issues
Sort by recently updated
recently updated
newest added

This adds the incremental loading feature that was one of the main motivations for the whole rewrite. As before, the implementation is closely based on the Java version in `okhttp-eventsource`....

This is a major rethink of this fairly old code, closely based on the [v4.0.0 redesign](https://github.com/launchdarkly/okhttp-eventsource/releases/tag/4.0.0) of our Java SSE client `okhttp-eventsource`. It has the following goals: * Give the...

Even though the retry field is read it seems like it is not really used for the reconnection time. Here the field is read to `_retryDelay`: https://github.com/launchdarkly/dotnet-eventsource/blob/ee3c87574c4f694c0851e6c206b7e783a2ab11f7/src/LaunchDarkly.EventSource/EventSource.cs#L408-L414 But `_retryDelay` is...