hosanna-ui-docs - v0.9.0
    Preparing search index...

    SharedRemoteDebugState manages the status and logs for remote debugging. Extends HsObservable to provide observable state for UI updates.

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    __hs_isObservable: boolean = true
    _cacheKey: string = 'TODO'
    maxMessages: number = 10

    Maximum number of messages to keep in the status buffer.

    statusBuffer: string[] = []

    Buffer holding the most recent status messages.

    statusText: string = 'Waiting for connection...'

    Observable status text for display in the UI. Updated whenever a new status message is logged.

    version: number = 0

    Methods

    • Logs a status message to the buffer and updates the observable statusText. If the buffer exceeds maxMessages, the oldest message is removed.

      Parameters

      • text: string

        The status message to log.

      Returns void