Server Streaming in SignalR
Learn to add the streaming functionality in SignalR servers.
Introduction
As the name suggests, server streaming works the other way. However, you still need a client involved. The client needs to trigger a server streaming endpoint on the server. Once it’s triggered, it will subscribe to the stream and read messages from it either until no more messages are left or the server disconnects the stream.
Press + to interact
We will now add some server streaming functionality to our clients and the server-side hub. This time, we'll start with the server because it controls the stream.