Summary
In this chapter, we've scratched the surface of SignalR, but you already should get a sense of the power of thinking differently about how you build your applications by creating your own simple discussion forum. The fact that we just define methods in C# and these are automatically accessible from the client code through the generated proxies makes it really productive to work with. It basically bridges the gap between the client and the server. What you'll notice is that we managed to actually create a forum that works, deploying the latest and greatest of technologies in the ASP.NET space in very little code.
Tip
You can find the entire sample code at https://github.com/dolittle/SignalR_Blueprints/tree/master/Source/Chapter2.
In the next chapter, we'll dive into how this real-time thinking can go even further and how to deal with scale. By taking another common real-world sample and online newspapers, we'll see how you can deploy SignalR to improve things for...