Table of Contents

Class JobGroup

Namespace
Quartz
Assembly
Quartz.dll

A job group listing entry.

public sealed record JobGroup : IEquatable<JobGroup>
Inheritance
JobGroup
Implements
Inherited Members

Constructors

JobGroup(string, bool)

A job group listing entry.

public JobGroup(string Name, bool Paused)

Parameters

Name string

The group name.

Paused bool

Whether the group is paused. Both stores persist this, so it outlives a restart and reaches the other nodes of a cluster.

Properties

Name

The group name.

public string Name { get; init; }

Property Value

string

Paused

Whether the group is paused. Both stores persist this, so it outlives a restart and reaches the other nodes of a cluster.

public bool Paused { get; init; }

Property Value

bool