呼叫另一个班级的 Hub

时间:2021-07-14 09:31:51

标签: signalr signalr-hub

我收到以下错误:

<块引用>

System.InvalidOperationException: '尝试激活'Rfid.RfidEngine' 时无法解析类型'Microsoft.AspNetCore.SignalR.IHubContext`1[Common.RfidHub]' 的服务。'

关于var rfidEngine = serviceProvider.GetService<IRfidEngine>();

我有这个代码:

开始

public void ConfigureServices(IServiceCollection services)
{
    services.AddSignalR();
    var collection = new ServiceCollection();
    collection.AddScoped<IApplicationLogger, ApplicationLogger>();
    collection.AddScoped<IRfidEngine, RfidEngine>();
    
    IServiceProvider serviceProvider = collection.BuildServiceProvider();

    var applicationLogger = serviceProvider.GetService<IApplicationLogger>();
    applicationLogger.LoggingSettings = applicationSetting.LoggingSetting;

    var signalR = serviceProvider.GetService<IHubContext<RfidHub>>();

    var applicationLogger = serviceProvider.GetService<IApplicationLogger>();
    applicationLogger.LoggingSettings = applicationSetting.LoggingSetting;

    var rfidEngine = serviceProvider.GetService<IRfidEngine>();
    rfidEngine.Start();
    
    applicationLogger.LogInformation($@"Program has started", LoggerType.Console);
}

public void Configure(IApplicationBuilder app)
{
    app.UseCors("ApplicationCors");
    app.UseRouting();

    app.UseEndpoints(endpoints =>
    {
        endpoints.MapHub<RfidHub>("/rfidhub");
    });
}

中心

public class RfidHub : Hub
{
    public async Task SendReadings(string user, string message)
    {
        await Clients.All.SendAsync("ReceiveReading", user, message);
    }
}

RfidEngine

public class RfidEngine : IDisposable, IRfidEngine
{
    public RfidEngine(IApplicationLogger applicationLogger, IHubContext<RfidHub> hubContext)
    {
        this.applicationLogger = applicationLogger;
        this.hubContext = hubContext;
    }

    private void SendViaHub(string message)
    {
        hubContext.Clients.All.SendAsync("ReceiveReadings", message);
    }
}

这是我的 Signalr 版本:

<ItemGroup>
  <PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="5.0.8" />
  <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.2" />
  <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>

我需要能够在不同的类上调用 HubContext。我可以尝试什么来解决这个问题?

0 个答案:

没有答案
相关问题