Hangfire源码解析-任务是如何执行的?
Posted yrinleung
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Hangfire源码解析-任务是如何执行的?相关的知识,希望对你有一定的参考价值。
一、Hangfire任务执行的流程
- 任务创建时:
- 将任务转换为Type并存储(如:HangFireWebTest.TestTask, HangFireWebTest, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null)
- 将参数序列化后存储
- 任务执行时:
- 根据Type值判断是否是静态方法,若非静态方法就根据Type从IOC容器中取实例。
- 反序列化参数
- 使用反射调用方法:MethodInfo.Invoke
二、Hangfire执行任务
从源码中找到“CoreBackgroundJobPerformer”执行任务的方法
internal class CoreBackgroundJobPerformer : IBackgroundJobPerformer
{
private readonly JobActivator _activator; //IOC容器
....省略
//执行任务
public object Perform(PerformContext context)
{
//创建一个生命周期
using (var scope = _activator.BeginScope(
new JobActivatorContext(context.Connection, context.BackgroundJob, context.CancellationToken)))
{
object instance = null;
if (context.BackgroundJob.Job == null)
{
throw new InvalidOperationException("Can't perform a background job with a null job.");
}
//任务是否为静态方法,若是静态方法需要从IOC容器中取出实例
if (!context.BackgroundJob.Job.Method.IsStatic)
{
instance = scope.Resolve(context.BackgroundJob.Job.Type);
if (instance == null)
{
throw new InvalidOperationException(
$"JobActivator returned NULL instance of the '{context.BackgroundJob.Job.Type}' type.");
}
}
var arguments = SubstituteArguments(context);
var result = InvokeMethod(context, instance, arguments);
return result;
}
}
//调用方法
private static object InvokeMethod(PerformContext context, object instance, object[] arguments)
{
try
{
var methodInfo = context.BackgroundJob.Job.Method;
var result = methodInfo.Invoke(instance, arguments);//使用反射调用方法
....省略
return result;
}
....省略
}
}
以上是关于Hangfire源码解析-任务是如何执行的?的主要内容,如果未能解决你的问题,请参考以下文章