I’ve got a couple SignalR basic demos working locally (chat, etc.) and I understand pushing to the server then having it broadcast to all connected clients.
My question is how might I utilize SignalR to “stream” data to the client. For example, seen examples in NodeJS/Socket.IO utilizing Twitters streaming API.
Are there any SignalR streaming examples out there? How might this work?
Take a look at the samples in the SignalR.Samples project. There’s a streaming sample in there.
Server side connection:
Code that generates the stream
Client Side Code