abort method

Future<void> abort(
  1. String name, {
  2. UserCredentials? userCredentials,
})

Abort given projection.

Does the same as disable, but without saving projection's checkpoint. The name identifies the projection to disable.

Implementation

Future<void> abort(
  String name, {
  UserCredentials? userCredentials,
}) async {
  return $runRequest(
    () => _disable(
      name,
      writeCheckpoint: false,
      userCredentials: userCredentials,
    ),
  );
}