class BoundedSemaphore
extends Semaphore
import { BoundedSemaphore } from "https://deno.land/x/async@v1.1.5/mod.ts";
A bounded semaphore object. Not thread-safe.
Bounded Semaphore is a version of Semaphore that throws an Error in release() if it increases the internal counte above the initial value.