notify method

bool notify()

通知

  • 返回是否允许执行

Implementation

bool notify() {
  if (_hasRun) {
    // 已经执行过
    return false;
  } else {
    // 未执行过
    _hasRun = true;
    onListen?.call();
    return true;
  }
}