https://github.com/davidfowl/signalr.lite
A lightweight version of SignalR
https://github.com/davidfowl/signalr.lite
Last synced: 3 months ago
JSON representation
A lightweight version of SignalR
- Host: GitHub
- URL: https://github.com/davidfowl/signalr.lite
- Owner: davidfowl
- Created: 2013-06-12T12:23:47.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-06-23T20:50:39.000Z (about 12 years ago)
- Last Synced: 2025-04-09T08:46:54.619Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 769 KB
- Stars: 29
- Watchers: 9
- Forks: 21
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
SignalR.Lite
============
A lightweight version of SignalR that serves as a learning tool for how the real framework actually works.It shows the following:
- The new [HttpTaskAsyncHandler](http://msdn.microsoft.com/en-us/library/system.web.httptaskasynchandler.aspx) and [ClientDisconnectedToken](http://msdn.microsoft.com/en-us/library/system.web.httpresponse.clientdisconnectedtoken.aspx) in .NET 4.5.
- A very naive and basic in memory message bus implementation.
- Server Sent events and LongPolling transport implementations on the server and client.
- Transport fallback on the client side.