使用控制器的Hub方法?

时间:2013-07-27 10:27:18

标签: asp.net asp.net-mvc signalr signalr-hub

我正在使用SignalR 2,我无法弄清楚如何使用我的Hub方法,例如在控制器操作中。

我知道我可以做到以下几点:

var hub = GlobalHost.ConnectionManager.GetHubContext<T>();
hub.Clients.All.clientSideMethod(param);

但是直接在客户端执行该方法。

如果我的服务器端ClientSideMethod(param)方法中有业务逻辑,我想从我的控制器调用,就像从客户端调用它一样?

目前我在我的集​​线器中使用public static void ClientSideMethod(param),在该方法中,我使用IHubContext中的ConnectionManager

没有更好的做法吗?

以下不起作用(在SignalR 2中不再有?):

var hubManager = new DefaultHubManager(GlobalHost.DependencyResolver);
instance = hubManager.ResolveHub(typeof(T).Name) as T;
instance.ClientSideMethod(param);

在访问客户端时,我得到“不通过集线器管道创建集线器”的例外情况。

2 个答案:

答案 0 :(得分:12)

可能可以创建一个实现业务规则的“帮助程序”类,并由您的集线器和控制器调用:

public class MyHub : Hub
{
    public void DoSomething()
    {
        var helper = new HubHelper(this);
        helper.DoStuff("hub stuff");
    }
}

public class MyController : Controller
{
    public ActionResult Something()
    {
        var hub = GlobalHost.ConnectionManager.GetHubContext<MyHub>();
        var helper = new HubHelper(hub);
        helper.DoStuff("controller stuff");
    }
}

public class HubHelper
{
    private IHubConnectionContext hub;

    public HubHelper(IHubConnectionContext hub)
    {
        this.hub = hub;
    }

    public DoStuff(string param)
    {
        //business rules ...

        hub.Clients.All.clientSideMethod(param);
    }
}

答案 1 :(得分:11)

因为我没有找到一个好的解决方案&#34;我正在使用@ michael.rp的解决方案,但有一些改进:

我确实创建了以下基类:

public abstract class Hub<T> : Hub where T : Hub
{
    private static IHubContext hubContext;
    /// <summary>Gets the hub context.</summary>
    /// <value>The hub context.</value>
    public static IHubContext HubContext
    {
        get
        {
            if (hubContext == null)
                hubContext = GlobalHost.ConnectionManager.GetHubContext<T>();
            return hubContext;
        }
    }
}

然后在实际的Hub中(例如public class AdminHub : Hub<AdminHub>)我有(静态)方法,如下所示:

/// <summary>Tells the clients that some item has changed.</summary>
public async Task ItemHasChangedFromClient()
{
    await ItemHasChangedAsync().ConfigureAwait(false);
}
/// <summary>Tells the clients that some item has changed.</summary>
public static async Task ItemHasChangedAsync()
{
    // my custom logic
    await HubContext.Clients.All.itemHasChanged();
}