invalidateReadyCheck method

  1. @override
void invalidateReadyCheck(
  1. JsonPath path
)
override

Unregisters a ready check at the given path. (should this also complete any outstanding item?)

Implementation

@override
void invalidateReadyCheck(JsonPath path) {
  final check = readyChecks[path];
  if (check?.isStarted == true && check?.isNotComplete == true) {
    check!.complete();
  }
  readyChecks.remove(path);
}