18.54. JobState

State of a job.

Copy
Copied!
            

enum JobState { // The job is unknown to the service // or in an unknown state. JOB_STATE_UNKNOWN = 0; // The job has been accepted and queued by the service, // but has not yet started running. JOB_STATE_PENDING = 1; // The job is currently running. JOB_STATE_RUNNING = 2; // The job has stopped running. JOB_STATE_STOPPED = 3; }


See also JobStatus for additional information.

© Copyright 2018-2021, NVIDIA Corporation. All rights reserved. Last updated on Feb 1, 2023.