(date: Date)
| 25 | } |
| 26 | |
| 27 | public waitUntil(date: Date): Promise<void> { |
| 28 | return this.#getRuntimeManager().waitUntil(date); |
| 29 | } |
| 30 | |
| 31 | public waitForTask(params: { id: string; ctx: TaskRunContext }): Promise<TaskRunExecutionResult> { |
| 32 | return this.#getRuntimeManager().waitForTask(params); |
nothing calls this directly
no test coverage detected