Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/async/mod.ts>Notify#notified

🦕 Asynchronous primitive modules for Deno.
Go to Latest
method Notify.prototype.notified
Re-export
import { Notify } from "https://deno.land/x/async@v2.0.2/mod.ts";

Asynchronously waits for notification. The caller's execution is suspended until the notify method is called. The method returns a Promise that resolves when the caller is notified. Optionally takes an AbortSignal to abort the waiting if the signal is aborted.

Parameters

optional
unnamed 0: WaitOptions = [UNSUPPORTED]

Optional parameters.

Returns

Promise<void>