durable-execution - v0.32.0
    Preparing search index...

    Type Alias Mutex

    A mutex returned by createMutex.

    type Mutex = {
        acquire: () => Promise<void>;
        release: () => void;
    }
    Index

    Properties

    Properties

    acquire: () => Promise<void>
    release: () => void