Hosanna UI API v1.30.2-next
    Preparing search index...

    Interface representing a system service that provides utility methods for time management and periodic updates.

    interface ISystemService {
        _hid?: string;
        contentId?: string;
        id: string;
        _tick(delta: number): void;
        now(): number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Methods

    Properties

    _hid?: string
    contentId?: string
    id: string

    Methods

    • Handles periodic updates for the system service. This method is called with the time delta since the last update.

      Parameters

      • delta: number

        The time delta in milliseconds since the last update.

      Returns void

    • Retrieves the current timestamp in milliseconds.

      Returns number

      The current timestamp as a number.