0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/docs/examples/os_signals.md
Shohei YOSHIDA 45ec10535a
docs: add 'ts' tag to code blocks in manual/examples/os_signals.md (#5297)
This should enable syntax highlighting on the website.
2020-05-14 05:54:57 +02:00

825 B

Handle OS Signals

This program makes use of an unstable Deno feature. Learn more about unstable features.

API Reference

You can use Deno.signal() function for handling OS signals.

for await (const _ of Deno.signal(Deno.Signal.SIGINT)) {
  console.log("interrupted!");
}

Deno.signal() also works as a promise.

await Deno.signal(Deno.Singal.SIGINT);
console.log("interrupted!");

If you want to stop watching the signal, you can use dispose() method of the signal object.

const sig = Deno.signal(Deno.Signal.SIGINT);
setTimeout(() => {
  sig.dispose();
}, 5000);

for await (const _ of sig) {
  console.log("interrupted");
}

The above for-await loop exits after 5 seconds when sig.dispose() is called.