Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Quartz.NET,但在查找有关工作生命周期的文档时遇到了麻烦。
每次运行作业时都会创建作业类的新实例,还是会重用现有实例?
如果触发器再次触发时作业当前正在运行怎么办?
触发器的每次触发都会创建一个新的作业实例。如果两个触发器重叠,将创建两个实例。
这些实例不是池化的,一旦工作完成,它们就有资格进行垃圾收集。