Selva Compute API Reference - v1.5.1
    Preparing search index...

    Interface SolveOptions

    Per-call options that override the client's default ComputeConfig values.

    Use these for per-request control without mutating the client config:

    • signal — cancel a specific solve (e.g. when a slider value is superseded)
    • timeoutMs — extend timeout for a long-running solve, or pass 0 to disable
    • retry — override retry policy for this call only
    interface SolveOptions {
        retry?: RetryPolicy;
        signal?: AbortSignal;
        timeoutMs?: number;
    }
    Index

    Properties

    retry?: RetryPolicy
    signal?: AbortSignal
    timeoutMs?: number