SchedulerMetaData Constructor

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

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

C#
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: SystemString
Name of the scheduler.
schedInst
Type: SystemString
The scheduler instance.
schedType
Type: SystemType
The scheduler type.
isRemote
Type: SystemBoolean
if set to true, scheduler is a remote scheduler.
started
Type: SystemBoolean
if set to true, scheduler is started.
isInStandbyMode
Type: SystemBoolean
if set to true, scheduler is in standby mode.
shutdown
Type: SystemBoolean
if set to true, scheduler is shutdown.
startTime
Type: SystemNullableDateTimeOffset
The start time.
numberOfJobsExec
Type: SystemInt32
The number of jobs executed.
jsType
Type: SystemType
The job store type.
jsPersistent
Type: SystemBoolean
if set to true, job store is persistent.
jsClustered
Type: SystemBoolean
if set to true, the job store is clustered
tpType
Type: SystemType
The thread pool type.
tpSize
Type: SystemInt32
Size of the thread pool.
version
Type: SystemString
The version string.
See Also

Reference