Skip to content

Instantly share code, notes, and snippets.

@lizmat
Last active October 30, 2022 10:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lizmat/180e31661db37e16bf52a656bc1bf0cd to your computer and use it in GitHub Desktop.
Save lizmat/180e31661db37e16bf52a656bc1bf0cd to your computer and use it in GitHub Desktop.
example of timeout logic
sub timeout-after($timeout, $promise) {
await Promise.anyof(Promise.in($timeout), $promise);
$promise
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment