IJobRunShellFactory InterfaceQuartz.NET API Documentation
Responsible for creating the instances of JobRunShell to be used within the QuartzScheduler instance.

Namespace: Quartz.Core
Assembly: Quartz (in Quartz.dll) Version: 1.0.3.3
Syntax

public interface IJobRunShellFactory
Remarks

Although this interface looks a lot like an 'object pool', implementations do not have to support the re-use of instances. If an implementation does not wish to pool instances, then the BorrowJobRunShell  method would simply create a new instance, and the ReturnJobRunShell(JobRunShell) method would do nothing.
See Also