- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我的依赖项之一(DbContext)是使用 WebApiRequestLifestyle 范围注册的。
现在,我的后台作业使用 IoC 并依赖于上面使用 WebApiRequestLifestyle 注册的服务。我想知道当 Hangfire 调用我为后台作业注册的方法时这是如何工作的。由于不涉及 Web api,DbContext 是否会被视为 transient 对象?
任何指导都会很棒!
这是我在启动期间发生的初始化代码:
public void Configuration(IAppBuilder app)
{
var httpConfig = new HttpConfiguration();
var container = SimpleInjectorWebApiInitializer.Initialize(httpConfig);
var config = (IConfigurationProvider)httpConfig.DependencyResolver
.GetService(typeof(IConfigurationProvider));
ConfigureJwt(app, config);
ConfigureWebApi(app, httpConfig, config);
ConfigureHangfire(app, container);
}
private void ConfigureHangfire(IAppBuilder app, Container container)
{
Hangfire.GlobalConfiguration.Configuration
.UseSqlServerStorage("Hangfire");
Hangfire.GlobalConfiguration.Configuration
.UseActivator(new SimpleInjectorJobActivator(container));
app.UseHangfireDashboard();
app.UseHangfireServer();
}
public static Container Initialize(HttpConfiguration config)
{
var container = new Container();
container.Options.DefaultScopedLifestyle = new WebApiRequestLifestyle();
InitializeContainer(container);
container.RegisterMvcControllers(Assembly.GetExecutingAssembly());
container.RegisterWebApiControllers(config);
container.RegisterMvcIntegratedFilterProvider();
container.Register<Mailer>(Lifestyle.Scoped);
container.Register<PortalContext>(Lifestyle.Scoped);
container.RegisterSingleton<TemplateProvider, TemplateProvider>();
container.Verify();
DependencyResolver.SetResolver(new SimpleInjectorDependencyResolver(container));
config.DependencyResolver = new SimpleInjectorWebApiDependencyResolver(container);
return container;
}
public class MailNotificationHandler : IAsyncNotificationHandler<FeedbackCreated>
{
private readonly Mailer mailer;
public MailNotificationHandler(Mailer mailer)
{
this.mailer = mailer;
}
public Task Handle(FeedbackCreated notification)
{
BackgroundJob.Enqueue<Mailer>(x => x.SendFeedbackToSender(notification.FeedbackId));
BackgroundJob.Enqueue<Mailer>(x => x.SendFeedbackToManagement(notification.FeedbackId));
return Task.FromResult(0);
}
}
public class Mailer
{
private readonly PortalContext dbContext;
private readonly TemplateProvider templateProvider;
public Mailer(PortalContext dbContext, TemplateProvider templateProvider)
{
this.dbContext = dbContext;
this.templateProvider = templateProvider;
}
public void SendFeedbackToSender(int feedbackId)
{
Feedback feedback = dbContext.Feedbacks.Find(feedbackId);
Send(TemplateType.FeedbackSender, new { Name = feedback.CreateUserId });
}
public void SendFeedbackToManagement(int feedbackId)
{
Feedback feedback = dbContext.Feedbacks.Find(feedbackId);
Send(TemplateType.FeedbackManagement, new { Name = feedback.CreateUserId });
}
public void Send(TemplateType templateType, object model)
{
MailMessage msg = templateProvider.Get(templateType, model).ToMailMessage();
using (var client = new SmtpClient())
{
client.Send(msg);
}
}
}
最佳答案
I'm wondering how this works when Hangfire calls the method i registered for the background job. Will the DbContext be treated like a transistent object since the web api is not involved?
AsyncScopedLifestyle
(在以前的版本中
WebApiRequestLifestyle
),WCF 和
WcfOperationLifestyle
和 MVC
WebRequestLifestyle
.对于 Windows 服务,您通常会使用
AsyncScopedLifestyle
.
ThreadScopedLifestyle
或
AsyncScopedLifestyle
.这些范围需要明确的开始。
Hangfire.SimpleInjector
集成库。这个库实现了一个自定义
JobActivator
实现称为
SimpleInjectorJobActivator
这个实现将创建一个
Scope
在后台线程上为您服务。 Hangfire 实际上会解决您的
Mailer
在此执行上下文范围的上下文中。所以
Mailer
MailNotificationHandler
中的构造函数参数实际上从未使用过; Hangfire 将为您解决此类型。
WebApiRequestLifestyle
和
AsyncScopedLifestyle
可以互换;
WebApiRequestLifestyle
在后台使用执行上下文范围和
SimpleInjectorWebApiDependencyResolver
实际上启动了一个执行上下文范围。所以有趣的是你的
WebApiRequestLifestyle
也可以用于后台操作(尽管它可能有点困惑)。因此,您的解决方案可以正常工作。
var container = new Container();
container.Options.DefaultScopedLifestyle = Lifestyle.CreateHybrid(
new AsyncScopedLifestyle(),
new WebRequestLifestyle());
container.Register<DbContext>(() => new DbContext(...), Lifestyle.Scoped);
MailNotificationHandler
,从直接依赖于外部库(例如 Hangfire)。这直接违反了依赖倒置原则,使您的应用程序代码很难测试和维护。相反,仅让您的 Composition Root(连接依赖项的地方)依赖于 Hangfire。在您的情况下,解决方案非常简单,我什至会说令人愉快,它看起来如下:
public interface IMailer
{
void SendFeedbackToSender(int feedbackId);
void SendFeedbackToManagement(int feedbackId);
}
public class MailNotificationHandler : IAsyncNotificationHandler<FeedbackCreated>
{
private readonly IMailer mailer;
public MailNotificationHandler(IMailer mailer)
{
this.mailer = mailer;
}
public Task Handle(FeedbackCreated notification)
{
this.mailer.SendFeedbackToSender(notification.FeedbackId));
this.mailer.SendFeedbackToManagement(notification.FeedbackId));
return Task.FromResult(0);
}
}
IMailer
抽象并制作了
MailNotificationHandler
依赖于这个新的抽象;不知道任何后台处理的存在。现在靠近您配置服务的部分,定义
IMailer
将调用转发到 Hangfire 的代理:
// Part of your composition root
private sealed class HangfireBackgroundMailer : IMailer
{
public void SendFeedbackToSender(int feedbackId) {
BackgroundJob.Enqueue<Mailer>(m => m.SendFeedbackToSender(feedbackId));
}
public void SendFeedbackToManagement(int feedbackId) {
BackgroundJob.Enqueue<Mailer>(m => m.SendFeedbackToManagement(feedbackId));
}
}
container.Register<IMailer, HangfireBackgroundMailer>(Lifestyle.Singleton);
container.Register<Mailer>(Lifestyle.Transient);
HangfireBackgroundMailer
到
IMailer
抽象。这确保了
BackgroundMailer
注入(inject)您的
MailNotificationHandler
,而
Mailer
当后台线程启动时,类由 Hangfire 解析。注册
Mailer
是可选的,但建议使用,因为它已成为根对象,并且由于它具有依赖关系,因此我们希望 Simple Injector 知道此类型以允许它验证和诊断此注册。
MailNotificationHandler
的观点,应用程序现在干净多了。
关于c# - WebApiRequestLifestyle 和 BackgroundJob 混淆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36918995/
使用 hangfire 我们可以做如下事情: public MyClass { public void RunJob() { SomeClass x = new Som
我的依赖项之一(DbContext)是使用 WebApiRequestLifestyle 范围注册的。 现在,我的后台作业使用 IoC 并依赖于上面使用 WebApiRequestLifestyle
有没有办法禁止失败的 Hangfire BackgroundJob 重新排队? 我们不希望再次执行失败的作业,因为这可能会导致问题。 最佳答案 已解决,使用 [AutomaticRetry(Attem
我正在开发一个 Yesod 应用程序,其中许多应用程序请求将导致从 3rd-party API 获取数据。获取的数据只会在后续请求期间使用——也就是说,触发 API 调用的请求可以在不等待调用完成的情
我有一个包含地址簿所有联系人的数组。当我在客户端和云代码中保存全部时,我的请求总是超时,导致部分保存联系人列表。这就是我想使用cloudcode backgroundjob的原因。 我找不到将数组传递
我是一名优秀的程序员,十分优秀!