tachyon-drive
    Preparing search index...

    Interface IExternalNotify

    this interface is for building external update notifiers if driver does not internally support it.

    v0.9.0

    interface IExternalNotify {
        init(): void | Promise<void>;
        notifyUpdate(timeStamp: Date): void | Promise<void>;
        unload(): void | Promise<void>;
    }

    Hierarchy

    Index

    Methods

    • Initializes the notifier.

      Returns void | Promise<void>

      A promise when the notifier was successfully initialized.

    • Notify that the data has been updated. (in store and clear methods)

      Parameters

      • timeStamp: Date

      Returns void | Promise<void>

    • Unload the notifier.

      Returns void | Promise<void>

      A promise when the notifier was successfully unloaded.