rollbackOnFailure property

bool rollbackOnFailure

True if the geodatabase feature service synchronization should roll back on a failure, false otherwise.

The default value is false (no rollback on failure).

Implementation

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

Implementation

set rollbackOnFailure(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_OfflineMapSyncParameters_setRollbackOnFailure(
      _handle,
      value,
      errorHandler,
    );
  });
}