當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript proper-lockfile.check函數代碼示例

本文整理匯總了TypeScript中proper-lockfile.check函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript check函數的具體用法?TypeScript check怎麽用?TypeScript check使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了check函數的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: runInit

  public async runInit(force: boolean) {
    if (this.repoConfig.init) {
      const versionFile = path.join(this.workspaceDir, 'init.version');
      if (this.checkRevision(versionFile) && !force) {
        this.log.info('a same revision exists, init cmd skipped.');
        return;
      }
      const lockFile = this.workspaceDir; // path.join(this.workspaceDir, 'init.lock');

      const isLocked = await LockFile.check(lockFile);
      if (isLocked) {
        this.log.info('another process is running, please try again later');
        return;
      }
      const release = await LockFile.lock(lockFile);

      try {
        const process = this.spawnProcess(this.repoConfig.init);
        const logFile = path.join(this.workspaceDir, 'init.log');
        const logFileStream = fs.createWriteStream(logFile, { encoding: 'utf-8', flags: 'a+' });
        this.redirectOutput(process.stdout, logFileStream);
        this.redirectOutput(process.stderr, logFileStream, true);
        process.on('close', async (code, signal) => {
          logFileStream.close();
          await this.writeRevisionFile(versionFile);
          this.log.info(`init process finished with code: ${code} signal: ${signal}`);
          await release();
        });
      } catch (e) {
        this.log.error(e);
        release();
      }
    }
  }
開發者ID:elastic,項目名稱:kibana,代碼行數:34,代碼來源:workspace_command.ts

示例2: lock

(async () => {
    const release = await lock('some/file'); // $ExpectType () => Promise<void>
    await release(); // $ExpectType void

    await lock('some/file'); // $ExpectType () => Promise<void>
    await unlock('some/file'); // $ExpectType void

    await check('some/file'); // $ExpectType boolean
})();
開發者ID:Jeremy-F,項目名稱:DefinitelyTyped,代碼行數:9,代碼來源:proper-lockfile-tests.ts

示例3: check

    await check('some/file'); // $ExpectType boolean
})();

lock('some/file')
    .then((release) => {
        // Do something while the file is locked

        // Call the provided release function when you're done,
        // which will also return a promise
        return release();
    });

lock('some/file')
    .then(() => {
        // Do something while the file is locked

        // Later..
        return unlock('some/file');
    });

check('some/file')
    .then((isLocked) => {
        // isLocked will be true if 'some/file' is locked, false otherwise
    });

const release = lockSync('some/file'); // $ExpectType () => void
release(); // $ExpectType void
unlockSync('some/file'); // $ExpectType void
checkSync('some/file'); // $ExpectType boolean
開發者ID:Jeremy-F,項目名稱:DefinitelyTyped,代碼行數:29,代碼來源:proper-lockfile-tests.ts


注:本文中的proper-lockfile.check函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。