@squidcloud/client
    Preparing search index...

    Interface ExecuteFunctionOptions<ResultType>

    Advanced options for a Squid executeFunction call.

    interface ExecuteFunctionOptions<ResultType> {
        caching?: ExecuteFunctionCachingOptions<ResultType>;
        deduplication?: boolean | ConcurrentCallDeduplicationOptions;
        functionName: string;
    }

    Type Parameters

    • ResultType
    Index

    Properties

    Optional caching configuration. Reuses results based on argument values.

    deduplication?: boolean | ConcurrentCallDeduplicationOptions

    Deduplication config for sharing results of concurrent calls with the same args. When set to true a default mode with 'compareArgsByReference' is used.

    functionName: string

    The name of the @executable function to invoke.