Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/JAVA/Openclaw/extensions/qa-lab/src/   (Openclaw AI Version 22©)  Datei vom 26.3.2026 mit Größe 1 kB image not shown  

Quelle  cron-run-wait.ts

  Sprache: JAVA
 

import { setTimeout as sleep } from "node:timers/promises";
import { formatErrorMessage } from "openclaw/plugin-sdk/error-runtime";

export type QaCronRunLogEntry = {
  ts?: number;
  status?: "ok" | "error" | "skipped";
  summary?: string;
  error?: string;
  deliveryStatus?: "delivered" | "not-delivered" | "unknown" | "not-requested";
};

type QaCronRunsPage = {
  entries?: QaCronRunLogEntry[];
};

export async function waitForCronRunCompletion(params: {
  callGateway: (
    method: string,
    rpcParams?: unknown,
    opts?: { timeoutMs?: number },
  ) => Promise<unknown>;
  jobId: string;
  afterTs: number;
  timeoutMs?: number;
  intervalMs?: number;
}) {
  const timeoutMs = params.timeoutMs ?? 90_000;
  const intervalMs = params.intervalMs ?? 1_000;
  const startedAt = Date.now();
  let lastEntries: QaCronRunLogEntry[] = [];
  while (Date.now() - startedAt < timeoutMs) {
    const page = (await params.callGateway(
      "cron.runs",
      {
        id: params.jobId,
        limit: 20,
        sortDir: "desc",
      },
      { timeoutMs: Math.min(timeoutMs, 30_000) },
    )) as QaCronRunsPage;
    const entries = Array.isArray(page.entries) ? page.entries : [];
    lastEntries = entries;
    const completed = entries.find(
      (entry) =>
        typeof entry.ts === "number" &&
        entry.ts >= params.afterTs &&
        (entry.status === "ok" || entry.status === "error" || entry.status === "skipped"),
    );
    if (completed) {
      return completed;
    }
    await sleep(intervalMs);
  }
  throw new Error(
    `timed out waiting for cron run completion for ${params.jobId}: ${formatErrorMessage(lastEntries)}`,
  );
}

Messung V0.5 in Prozent
C=99 H=99 G=98

¤ Dauer der Verarbeitung: 0.11 Sekunden  (vorverarbeitet am  2026-06-10) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.