Created
July 19, 2012 15:35
-
-
Save karlitros/3144735 to your computer and use it in GitHub Desktop.
Hub class for SignalR communication between client and server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Web; | |
using SignalR.Hubs; | |
namespace LiveUpdate.Hubs | |
{ | |
/// <summary> | |
/// Skeleton hub class used to establish connections. | |
/// We could pop methods in here that could be called directly by the client. | |
/// </summary> | |
[HubName("updateFeed")] | |
public class LiveUpdateHub : Hub | |
{ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment