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
NamestringThe group name.
PausedboolWhether 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
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; }