Helia
    Preparing search index...

    Interface RoutingOptions

    When a routing operation involves reading values, these options allow controlling where the values are read from. Some implementations support a local cache that may be used in preference over network calls, for example when a record has a TTL.

    interface RoutingOptions {
        onProgress?: (evt: any) => void;
        signal?: AbortSignal;
        trace?: any;
        useCache?: boolean;
        useNetwork?: boolean;
        validate?: boolean;
    }

    Hierarchy

    Index

    Properties

    onProgress?: (evt: any) => void
    signal?: AbortSignal
    trace?: any
    useCache?: boolean

    Pass false to not use cached values

    true
    
    useNetwork?: boolean

    Pass false to not use the network

    true
    
    validate?: boolean

    Pass false to not perform validation

    true