continueOnErrors property

bool continueOnErrors

Indicates whether or not the download preplanned offline map job should continue running in the event of failure to take a layer offline.

If this property is true, failure to take a layer or table offline will not fail the job, the failure will be exposed in the job result. If this property is false, failure to take a layer or table offline will fail the job and no more layers or tables will be taken offline. The layer or table's error will be available as the job's error. The default value is true.

Implementation

bool get continueOnErrors {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore
        .RT_DownloadPreplannedOfflineMapParameters_getContinueOnErrors(
            _handle, errorHandler);
  });
}
void continueOnErrors=(bool value)

Implementation

set continueOnErrors(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_DownloadPreplannedOfflineMapParameters_setContinueOnErrors(
        _handle, value, errorHandler);
  });
}