canPop method

  1. @override
bool canPop()
override

called by the global job stack to determine if this job can be popped

it usually is true, but for example, this action may be blocked for when it requires a task to run without exiting abnormally

Implementation

@override
bool canPop() {
  return true;
}