SchedulerMetaData Constructor Quartz.NET API Documentation
Initializes a new instance of the SchedulerMetaData class.

Namespace: Quartz
Assembly: Quartz (in Quartz.dll) Version: 2.2.1.400
Syntax

public SchedulerMetaData(
	string schedName,
	string schedInst,
	Type schedType,
	bool isRemote,
	bool started,
	bool isInStandbyMode,
	bool shutdown,
	Nullable<DateTimeOffset> startTime,
	int numberOfJobsExec,
	Type jsType,
	bool jsPersistent,
	bool jsClustered,
	Type tpType,
	int tpSize,
	string version
)

Parameters

schedName
Type: System String
Name of the scheduler.
schedInst
Type: System String
The scheduler instance.
schedType
Type: System Type
The scheduler type.
isRemote
Type: System Boolean
if set to true, scheduler is a remote scheduler.
started
Type: System Boolean
if set to true, scheduler is started.
isInStandbyMode
Type: System Boolean
if set to true, scheduler is in standby mode.
shutdown
Type: System Boolean
if set to true, scheduler is shutdown.
startTime
Type: System Nullable DateTimeOffset 
The start time.
numberOfJobsExec
Type: System Int32
The number of jobs executed.
jsType
Type: System Type
The job store type.
jsPersistent
Type: System Boolean
if set to true, job store is persistent.
jsClustered
Type: System Boolean
if set to true, the job store is clustered
tpType
Type: System Type
The thread pool type.
tpSize
Type: System Int32
Size of the thread pool.
version
Type: System String
The version string.
See Also