Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
DJGosnell authored Dec 21, 2023
1 parent b52272d commit 1d99244
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ NexNet is a .NET real-time asynchronous networking library, providing developers
- Streaming classes/structs data via `NexusChannel<T>`
- Proxies can return:
- void for "fire and forget" invocation situations such as notifications.
- ValueTask whcih waiting for invocation completion.
- ValueTask for waiting for invocation completion.
- ValueTask<T> which will return a value from the remote invocation method.
- Server can message multiple connected clients with a single invocation.
- Automatic reconnection of clients upon timeout or loss of connection.
Expand Down Expand Up @@ -156,4 +156,4 @@ Each session is assigned a unique hub instance, ensuring that data is not shared
- Internally packages Marc Gravell's [Pipelines.Sockets.Unofficial](https://github.com/Dtronix/Pipelines.Sockets.Unofficial/tree/nexnet-v1) with additional performance modifications for Pipeline socket transports.
- Quic protocol requires `libmsquic` on *nix based systems. [Windows Support](https://learn.microsoft.com/en-us/dotnet/fundamentals/networking/quic/quic-overview)

Additional transports can be added easily as long as the new transport guarantees order and transmission.
Additional transports can be added easily as long as the new transport guarantees order and transmission.

0 comments on commit 1d99244

Please sign in to comment.