为每个客户端创建单独的SignalR Hub实例并传递参数

时间:2018-04-14 15:35:56

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

我正在尝试创建一个在数据库中发生更改时实时更新数据的页面。我用过SignalR。只有一个集线器,这是集线器的代码:

public class MyHub : Hub
{
    public static int prodId { get; set; }

    public void setProdID(int pid)
    {
        prodId = pid;
    }

    public BidDetailViewModel GetChanges()
    {
        string conStr = ConfigurationManager.ConnectionStrings["DefaultConnection"].ConnectionString;
        SqlConnection connection = new SqlConnection(conStr);

        SqlDependency.Start(conStr);
        string query = @"select Id,
                                BidDate,
                                BidAmount,
                                BidStatusId,
                                BidderId,
                                ProductId 
                                from [dbo].[Bids] 
                                where ProductId = " + prodId + 
                                " order by BidDate desc ";
        SqlCommand command = new SqlCommand(query, connection);
        command.Notification = null;
        SqlDependency dependency = new SqlDependency(command);

        //If Something will change in database and it will call dependency_OnChange method.
        dependency.OnChange += new OnChangeEventHandler(dependency_OnChange);
        connection.Open();
        SqlDataReader dr = command.ExecuteReader();

        var bid = new Bid();

        while (dr.Read())
        {
            bid.Id = dr.GetInt32(0);
            bid.BidDate = DateTime.Now; //fake value, dont need it
            bid.BidAmount = dr.GetFloat(2);
            bid.BidStatusId = dr.GetInt32(3);
            bid.BidderId = dr.GetString(4);
            bid.ProductId = dr.GetInt32(5);

            //Break after reading the first row
            //Using this becasue we can not use TOP(1) in the query due to SignalR restrictions
            break;
        }
        connection.Close();
        var vm = new BidDetailViewModel
        {
            HighestBid = bid,
            NoOfBids = -1
         //NoOfBids is no longer needed, assigning a random value of -1
         //will remove it later, just testing rn
        };

        return vm;
    }

    private void dependency_OnChange(object sender, SqlNotificationEventArgs e)
    {
        if (e.Type == SqlNotificationType.Change) SendNotifications();
    }

    private void SendNotifications()
    {
        BidDetailViewModel vm = GetChanges();
        IHubContext context = GlobalHost.ConnectionManager.GetHubContext<MyHub>();

        //Will update all the client with new bid values
        context.Clients.All.broadcastMessage(vm);
    }
}

我在两个不同的页面中调用中心。第一个是/Home/About,第二个是/Home/About2。它们都有相同的JS代码,除了一个更改,在/Home/About中传递的prodId是40,而/Home/About2传递的是41。 JS代码是:(这是/Home/About的代码,因为您可以看到它发送40。再次,/Home/About2具有完全相同的代码,但41 })。

<script>
    $(function () {
        // Declare a proxy to reference the hub.
        var ew = $.connection.myHub;
        //This method will fill all the Messages in case of any database change.
        ew.client.broadcastMessage = function (response) {
            //Changing HTML content here using document.getElementById()
        };

        //This method will fill all the Messages initially
        $.connection.hub.start().done(function () {
            ew.server.setProdID(40);
            //Hardcoding the prodID for now, will get it using document.getElementById() later
            //ProdId will be different for each page
            ew.server.getChanges().done(function(response) {
               //Changing HTML content here using document.getElementById()
            });
        });
    });
</script>

如您所见,我通过调用ProdId功能设置MyHub中心的SetProdID。我已将ProdId设置为静态成员,因此我可以在不创建集线器对象的情况下进行设置。现在,如果访问/Home/About,则会将prodId设置为40(按预期方式),然后我会从查询中获得结果。但是,当我访问\Home\About2时,它会将prodId设置为41(再次按预期方式),我会从查询中获得与参数41对应的结果。

现在,如果我更新数据库中标识为41的项目,/Home/About/Home/About2页面都会实时更新,但对应的项目ID为{{ {1}}。我知道这篇文章很长,但我的问题是,SignalR不应该为两个不同的页面制作一个完全独立的41实例吗?这是否发生是因为我已将MyHub1作为静态成员?如果是这样,我如何设置它而不使其成为静态成员?我基本上想要相同ProdId的多个实例,每个实例都有完全不同的MyHub。这可能吗?或者我必须写多个集线器(MyHub1,MyHub2,...... MyHubn)。编写多个集线器的问题在于,我不知道将会有多少项目。

我还尝试将prodId作为参数传递给prodId方法,但我不确定在调用{GetChanges()方法的方法中传递了什么{1}}方法。

sendNotification()

我不确定如何从这里继续,任何指针都将不胜感激!另外,感谢您阅读这篇长篇文章。

1 个答案:

答案 0 :(得分:0)

SignalR集线器是瞬态的。这意味着SignalR为每个请求创建一个新的集线器实例。请注意,因此您无法在集线器实例中保留集线器特定状态(例如,在非静态属性中),因为只要集线器方法完成,集线器就会被丢弃,并且您存储的值将丢失。

您的问题是您将id存储在静态变量中。静态成员在给定类的所有实例之间共享,因此如果在一个实例中更改它,则其他实例将看到新值。您可以在此article中阅读有关静态类和成员的更多信息。

解决问题的一种方法是将状态保存在ConcurrentDictionary上下文中的静态变量中,其中您使用connectionId作为键。您可以使用Context.ConnectionId来获取connectionId,以识别调用当前中心方法的客户端。