Interface RasterExecutionPlanExperimental

interface RasterExecutionPlan {
    bounded: boolean;
    cache: RasterCachePolicy;
    capability: RasterCapabilityStatus;
    decoder:
        | "none"
        | "worker"
        | "server"
        | "main-thread";
    mode: RasterExecutionMode;
    operation: RasterOperation;
    reason: string;
    sourceId: string;
    sourceKind: RasterSourceKind;
}

Properties

bounded: boolean
decoder:
    | "none"
    | "worker"
    | "server"
    | "main-thread"
operation: RasterOperation
reason: string
sourceId: string
sourceKind: RasterSourceKind