Vana SDK - v2.2.2
    Preparing search index...

    Interface PollingOptions

    Configures polling behavior for asynchronous operations.

    Controls how frequently and how long to poll for operation completion. Lower intervals provide faster updates but increase server load.

    interface PollingOptions {
        pollingInterval?: number;
        timeout?: number;
    }
    Index

    Properties

    pollingInterval?: number

    Polling interval in milliseconds (default: 500)

    timeout?: number

    Maximum time to wait in milliseconds (default: 30000)