繁体   English   中英

Asp.net 内核如何注册也包含自定义接口的 IHostedService

[英]Asp.net core How to Register IHostedService which also Contains a Custom Interface

如何属性注册一个包含IHostedService和 IMyInterface 之类的自定义接口的IMyInterface

如在

class BackgroundTaskScheduler: BackgroundService, ITaskScheduler {...}

如果配置如下:

services.AddHostedService<BackgroundTaskScheduler>();

然后尝试将其注入客户端,如下所示:

public class Foo
{
    Foo(ITaskScheduler taskScheduler) {...}
}

生成一个错误,指出 ASP.net 无法解析BackgroundTaskScheduler ,为什么?

在阅读了很多想法后,包括:

但是如何在不需要包装器 class 的情况下使其工作? 我将上面讨论的想法组合成以下两种扩展方法。

接口依赖注入

如果您喜欢使用接口 DI,如Bar.Bar(IFoo foo)中,那么使用这个:

        /// <summary>
        /// Used to register <see cref="IHostedService"/> class which defines an referenced <typeparamref name="TInterface"/> interface.
        /// </summary>
        /// <typeparam name="TInterface">The interface other components will use</typeparam>
        /// <typeparam name="TService">The actual <see cref="IHostedService"/> service.</typeparam>
        /// <param name="services"></param>
        public static void AddHostedApiService<TInterface, TService>(this IServiceCollection services)
            where TInterface : class
            where TService : class, IHostedService, TInterface
        {
            services.AddSingleton<TInterface, TService>();
            services.AddSingleton<IHostedService>(p => (TService) p.GetService<TInterface>());
        }

用法:

        public void ConfigureServices(IServiceCollection services)
        {
            services.AddHostedApiService<ITaskScheduler, BackgroundTaskScheduler>();
        }

具体class依赖注入

如果你喜欢使用具体的 class 注入,就像在Bar.Bar(Foo foo)中一样,那么使用:

        /// <summary>
        /// Used to register <see cref="IHostedService"/> class which defines an interface but will reference the <typeparamref name="TService"/> directly.
        /// </summary>
        /// <typeparam name="TService">The actual <see cref="IHostedService"/> service.</typeparam>
        public static void AddHostedApiService<TService>(this IServiceCollection services)
            where TService : class, IHostedService
        {
            services.AddSingleton<TService>();
            services.AddSingleton<IHostedService>(p => p.GetService<TService>());
        }

用法:

        public void ConfigureServices(IServiceCollection services)
        {
            services.AddHostedApiService<BackgroundTaskScheduler>();
        }

享受!

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM