pause method

bool pause()

Pauses the job.

Return Value: A value indicating whether the job was successfully paused.

Implementation

bool pause() {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Job_pause(
      _handle,
      errorHandler,
    );
  });
}