消费事件时如何发送消息

时间:2019-06-07 05:56:30

标签: signalr asp.net-core-webapi

我想在消费事件时(任何时候)发送一条消息 ->方法未关闭,她一直在等待事件,我可以将此代码编写为主要内容。

    public void getNotification()
    {

        x.OnConsommerMessage +=(o,e)=>{
            Thread.Sleep(500);
            _progressHubContext
               .Clients
               .Group(NotificationHub.GROUP_NAME)
               .SendAsync("taskProgressChanged", e.Message);

        };
     }

0 个答案:

没有答案