status property

JobStatus status

The status of the job.

When status changes the Job.onStatusChanged event is fired.

Implementation

JobStatus get status {
  final coreValue = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Job_getStatus(
      _handle,
      errorHandler,
    );
  });
  return JobStatus._fromCoreValue(
    coreValue,
  );
}