getLocalEditsCountCancelable method

CancelableOperation<int> getLocalEditsCountCancelable()

Cancelable version of getLocalEditsCount. See that method for more information.

Implementation

CancelableOperation<int> getLocalEditsCountCancelable() {
  final taskHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ArcGISFeatureTable_getLocalEditsCount(
        _handle, errorHandler);
  });
  return taskHandle
      .toCancelableOperation((element) => element.getValueAsInt()!);
}