C# Class Quartz.Core.QuartzSchedulerResources

Contains all of the resources (IJobStore,IThreadPool, etc.) necessary to create a QuartzScheduler instance.
Datei anzeigen Open project: quartznet/quartznet Class Usage Examples

Public Methods

Method Description
AddSchedulerPlugin ( ISchedulerPlugin plugin ) : void

Add the given ISchedulerPlugin for the QuartzScheduler to use. This method expects the plugin's "initialize" method to be invoked externally (either before or after this method is called).

GetUniqueIdentifier ( ) : string

Gets the unique identifier.

GetUniqueIdentifier ( string schedName, string schedInstId ) : string

Gets the unique identifier.

QuartzSchedulerResources ( ) : System

Method Details

AddSchedulerPlugin() public method

Add the given ISchedulerPlugin for the QuartzScheduler to use. This method expects the plugin's "initialize" method to be invoked externally (either before or after this method is called).
public AddSchedulerPlugin ( ISchedulerPlugin plugin ) : void
plugin ISchedulerPlugin
return void

GetUniqueIdentifier() public method

Gets the unique identifier.
public GetUniqueIdentifier ( ) : string
return string

GetUniqueIdentifier() public static method

Gets the unique identifier.
public static GetUniqueIdentifier ( string schedName, string schedInstId ) : string
schedName string Name of the scheduler.
schedInstId string The scheduler instance id.
return string

QuartzSchedulerResources() public method

public QuartzSchedulerResources ( ) : System
return System