std/signal
2022-10-10 10:05:56 -04:00
..
mod.ts docs: Using absolute paths in jsdoc import statements (#2762) 2022-10-10 10:05:56 -04:00
README.md docs: Using absolute paths in jsdoc import statements (#2762) 2022-10-10 10:05:56 -04:00
test.ts chore: update copyright header (#1871) 2022-02-02 23:21:39 +09:00

signal

signal is a module used to capture and monitor OS signals.

usage

The following functions are exposed in mod.ts:

signal

Generates an AsyncIterable which can be awaited on for one or more signals. dispose() can be called when you are finished waiting on the events.

import { signal } from "https://deno.land/std@$STD_VERSION/signal/mod.ts";
const sig = signal("SIGUSR1", "SIGINT");
setTimeout(() => {}, 5000); // Prevents exiting immediately.

for await (const _ of sig) {
  // ..
}

// At some other point in your code when finished listening:
sig.dispose();