public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddSingleton<RabbitListener>();
}
public void Configure(IApplicationBuilder app)
{
app.UseRabbitListener();
}
}
public static class ApplicationBuilderExtentions
{
//the simplest way to store a single long-living object, just for example.
private static RabbitListener _listener { get; set; }
public static IApplicationBuilder UseRabbitListener(this IApplicationBuilder app)
{
_listener = app.ApplicationServices.GetService<RabbitListener>();
var lifetime = app.ApplicationServices.GetService<IApplicationLifetime>();
lifetime.ApplicationStarted.Register(OnStarted);
//press Ctrl+C to reproduce if your app runs in Kestrel as a console app
lifetime.ApplicationStopping.Register(OnStopping);
return app;
}
private static void OnStarted()
{
_listener.Register();
}
private static void OnStopping()
{
_listener.Deregister();
}
}
3条答案
按热度按时间z3yyvxxp1#
对使用者/监听程序使用Singleton模式,以便在应用程序运行时保留它。使用
IApplicationLifetime
接口在应用程序启动/停止时启动/停止使用者。hgc7kmma2#
这是我的听众:
6bc51xsx3#
另一个选项是Hosted Services。
您可以创建一个HostedService并调用一个方法来注册
RabbitMq
监听程序。最后创建一个HostedService,调用ReadMessages方法注册:
注册服务:
在这种情况下,当应用程序停止,您的消费者将自动停止。
补充信息: