You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I really like the approach demonstrated with this repo where you don't replace the whole DI container that ASP.NET Core provides.
I was wondering if there are any plans to add support for SignalR hubs. In particular, I would like to support a scenario similar to the one described in the StockTicker sample. In the StockTicker sample, the StockTickerHub has a dependency on IStockTicker. A StockTicker in turn has a dependency on IHubContext<StockTickerHub>.
The text was updated successfully, but these errors were encountered:
With SignalR Core, it should be just a matter of replacing the default IHubActivator implementation with one that resolves from your favorite container, or creates hub instances using Pure DI.
Hello
I really like the approach demonstrated with this repo where you don't replace the whole DI container that ASP.NET Core provides.
I was wondering if there are any plans to add support for SignalR hubs. In particular, I would like to support a scenario similar to the one described in the StockTicker sample. In the StockTicker sample, the StockTickerHub has a dependency on IStockTicker. A StockTicker in turn has a dependency on IHubContext<StockTickerHub>.
The text was updated successfully, but these errors were encountered: