@defer/client
rescheduleExecution()
The rescheduleExecution
function reschedule a pending execution by its ID.
Example:
import { rescheduleExecution } from "@defer/client";
import { sayHello } from "./defer/sayHello";
const { id } = await sayHello("John Doe");
await rescheduleExecution(id, "1 hour");
Was this page helpful?