@hashgraph/solo
    Preparing search index...

    A file storage backend that operates on files within a specified base path. This backend does not support recursive operations into subfolders and only operates on files contained within the specified base path. All directory entries are ignored.

    Hierarchy (View Summary)

    Implements

    Index

    Constructors

    • Creates a new file storage backend bound to the specified base path. The basic file storage backend does not support recursive operations into subfolders and only operates on files contained within the specified base path. All directory entries are ignored.

      Parameters

      • basePath: string

        The base path to use for all file operations.

      Returns FileStorageBackend

      IllegalArgumentError if the base path is null, undefined, or empty.

      StorageBackendError if the base path does not exist or is not a directory.

    Properties

    basePath: string

    The base path to use for all file operations.

    Methods

    • Deletes the persisted data from the storage backend. Not all storage backends support deletion.

      Parameters

      • key: string

        The key to use to delete the data from the storage backend. The key is implementation specific and might be a file path, a config map name, or an environment variable prefix.

      Returns Promise<void>

    • Reads the persisted data from the storage backend and marshals it into bytes.

      Parameters

      • key: string

        The key to use to read the data from the storage backend. The key is implementation specific and might be a file path, a config map name, or an environment variable prefix.

      Returns Promise<Buffer<ArrayBufferLike>>

      The persisted data represented as a byte array.

    • Write the configuration data to the storage backend by marshalling the bytes into the underlying persistent data format.

      Parameters

      • key: string

        The key to use to write the data to the storage backend. The key is implementation specific and might be a file path, a config map name, or an environment variable prefix.

      • data: Buffer

        The persistent data represented as a byte array.

      Returns Promise<void>