@logixjs/core
    Preparing search index...

    Interface RuntimeStateTransactionOptions

    Runtime-level StateTransaction defaults.

    Applied as the runtime_default baseline; modules and providers may override.

    interface RuntimeStateTransactionOptions {
        instrumentation?: StateTransactionInstrumentation;
        traitConvergeBudgetMs?: number;
        traitConvergeDecisionBudgetMs?: number;
        traitConvergeMode?: "full" | "auto" | "dirty";
        traitConvergeOverridesByModuleId?: Readonly<
            Record<string, StateTransactionTraitConvergeOverrides>,
        >;
        traitConvergeTimeSlicing?: TraitConvergeTimeSlicingPatch;
        txnLanes?: TxnLanesPatch;
        txnLanesOverridesByModuleId?: Readonly<Record<string, TxnLanesPatch>>;
    }
    Index

    Properties

    instrumentation?: StateTransactionInstrumentation
    traitConvergeBudgetMs?: number
    traitConvergeDecisionBudgetMs?: number
    traitConvergeMode?: "full" | "auto" | "dirty"
    traitConvergeOverridesByModuleId?: Readonly<
        Record<string, StateTransactionTraitConvergeOverrides>,
    >
    traitConvergeTimeSlicing?: TraitConvergeTimeSlicingPatch
    txnLanes?: TxnLanesPatch

    Txn lanes configuration at the runtime_default baseline (enabled by default).

    txnLanesOverridesByModuleId?: Readonly<Record<string, TxnLanesPatch>>

    Txn lanes overrides at the runtime_module layer.