Options
All
  • Public
  • Public/Protected
  • All
Menu

A resource locker making use of the proper-lockfile library. Note that no locks are kept in memory, thus this is considered thread- and process-safe.

This proper-lockfile library has its own retry mechanism for the operations, since a lock/unlock call will either resolve successfully or reject immediately with the causing error. The retry function of the library however will be ignored and replaced by our own LockUtils' {@link retryFunctionUntil} function.

Hierarchy

  • FileSystemResourceLocker

Implements

Index

Constructors

Properties

attemptSettings: Required<AttemptSettings>
lockFolder: string

Folder that stores the locks

logger: Logger = ...

Methods

  • finalize(): Promise<void>
  • Generate LockOptions or UnlockOptions depending on the type of defauls given. A custom lockFilePath mapping strategy will be used.

    Type parameters

    • T

    Parameters

    • identifier: ResourceIdentifier

      ResourceIdentifier to generate (Un)LockOptions for

    • defaults: T

      The default options. (lockFilePath will get overwritten)

    Returns T

    LockOptions or UnlockOptions

  • swallowErrors(fn: () => Promise<unknown>): () => Promise<unknown>
  • Wrapper function for all (un)lock operations. Any errors coming from the fn() will be swallowed. Only ENOTACQUIRED errors wills be thrown (trying to release lock that didn't exist). This wrapper returns undefined because {@link retryFunction} expects that when a retry needs to happne.s

    Parameters

    • fn: () => Promise<unknown>

      The function reference to swallow errors from.

        • (): Promise<unknown>
        • Returns Promise<unknown>

    Returns () => Promise<unknown>

    Boolean or undefined.

      • (): Promise<unknown>
      • Wrapper function for all (un)lock operations. Any errors coming from the fn() will be swallowed. Only ENOTACQUIRED errors wills be thrown (trying to release lock that didn't exist). This wrapper returns undefined because {@link retryFunction} expects that when a retry needs to happne.s

        Returns Promise<unknown>

        Boolean or undefined.