Class ScheduledAnacronTask
Information about a scheduled anacron task.
Implements
Namespace: Google.Backstory
Assembly: Google.Backstory.dll
Syntax
public sealed class ScheduledAnacronTask : IMessage<ScheduledAnacronTask>, IEquatable<ScheduledAnacronTask>, IDeepCloneable<ScheduledAnacronTask>, IBufferMessage, IMessage
Constructors
ScheduledAnacronTask()
Declaration
public ScheduledAnacronTask()
ScheduledAnacronTask(ScheduledAnacronTask)
Declaration
public ScheduledAnacronTask(ScheduledAnacronTask other)
Parameters
| Type | Name | Description |
|---|---|---|
| ScheduledAnacronTask | other |
Properties
DelayMinutes
The delay in minutes before the job is run.
Declaration
public long DelayMinutes { get; set; }
Property Value
| Type | Description |
|---|---|
| long |
JobId
The unique identifier of the job.
Declaration
public string JobId { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Path
The PATH environment variable defined in the anacrontab file.
Declaration
public string Path { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Period
Anacrontab period field. Value is an integer in days, or a string like "@daily", "@weekly", or "@monthly".
Declaration
public string Period { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
SourceLine
The original source line from the anacrontab file.
Declaration
public string SourceLine { get; set; }
Property Value
| Type | Description |
|---|---|
| string |