mutex#
a really simple mutex.
const mutex = new Mutex();
{
using _lock = await mutex.acquire();
// ... go about your day
}
https://tangled.org/mary.my.id/pkg-mutex
git@tangled.org:mary.my.id/pkg-mutex
For self-hosted knots, clone URLs may differ based on your setup.
a really simple mutex.
const mutex = new Mutex();
{
using _lock = await mutex.acquire();
// ... go about your day
}