crnt - v0.0.31
    Preparing search index...

    Interface SemaphorePermit

    Result of a Semaphore.acquire operation. This is a Disposable that can be released when no longer needed.

    interface SemaphorePermit {
        release(): void;
    }

    Hierarchy

    Index

    Methods

    Methods

    • release the permit, making it available for other operations.

      This operaiton is idempotent.

      Returns void