I have a job that pings a server, and if it's inactive, it's shuts down other jobs.
When the server comes back up, I want to turn the jobs back on if they've been turned off.
I'm looking to determine if a job is active or not.
In the API, I'm using Server.Jobs.Activate(jobID) and Server.Jobs.DeActivate(jobID).
That part is working fine.
Is there a Server.Jobs.IsActive(jobID) equivalent that returns a bool value?
Or is there a different way to determine this?
(Version 5.5.5)