Options
All
  • Public
  • Public/Protected
  • All
Menu

StorageSystem provides storages for other systems / modules

collboard-system

Hierarchy

  • AbstractSystem
    • StorageSystem

Index

Constructors

  • Parameters

    • systems: ISystemsExtended

    Returns StorageSystem

Properties

persistentStorage: any
ready: Promise<void>

Promise which is resolved when the system is initialized and ready to use.

runMigrations: any
sessionStorage: any
systems: ISystemsExtended

Accessors

  • get isDestroyed(): boolean
  • Is this object destroyed?

    Returns boolean

  • get isReady(): boolean
  • Checks if the system is initialized and ready to use.

    Returns boolean

Methods

  • addSubdestroyable(...subdestroyable: ITeardownLogic[]): StorageSystem
  • Binds new registration with itself. This registration/destroyable will be destroyed with this.

    Parameters

    • Rest ...subdestroyable: ITeardownLogic[]

    Returns StorageSystem

  • checkIsReady(): void
  • Checks if the system is initialized and ready to use. If not, throws an error. If it is, do nothing.

    Returns void

  • checkWhetherNotDestroyed(errorMessage?: string, runBeforeError?: () => void): void
  • Checks, whether the object is not destroyed

    Parameters

    • Optional errorMessage: string

      Message that will replace default one before error

    • Optional runBeforeError: () => void

      Callback runed before error is thrown; typically this can be some logging

        • (): void
        • Returns void

    Returns void

  • destroy(): Promise<void>
  • Returns Promise<void>

  • getStorage<TValue>(storageName: string, persistent?: boolean): IStorage<TValue>
  • Type parameters

    • TValue: unknown

    Parameters

    • storageName: string
    • Optional persistent: boolean

    Returns IStorage<TValue>

  • init(): Promise<void>
  • Returns Promise<void>

  • isDestroyable(obj: any): obj is IDestroyable
  • Chcek whether the given object is destroyable

    Parameters

    • obj: any

    Returns obj is IDestroyable