OptiView Ads SDK for React Native
    Preparing search index...

    Interface UseOptiViewAdsResult

    Reactive session state, with no polling or debug-overlay subscriptions.

    interface UseOptiViewAdsResult {
        connector: OptiViewAdsConnector | null;
        error: unknown;
        session: OptiViewAdsSession | null;
        status: "idle" | OptiViewAdsSessionStatus;
    }
    Index
    connector: OptiViewAdsConnector | null

    Live connector for SDK events and controls, or null after destruction.

    error: unknown

    Session creation, startup or cleanup error, or null.

    session: OptiViewAdsSession | null

    Managed session, or null before creation.

    status: "idle" | OptiViewAdsSessionStatus

    Idle until a session exists; otherwise its lifecycle state.