Documentation
    Preparing search index...

    Interface BurstGuard

    Init-burst guard — caps the number of operations fired within the initialization window (initElapsedMs below windowMs).

    Modeled as a first-class field on NappletRules / FirewallConfig, NOT as a ContentMatcher (research Open Question 2 — resolved in favor of first-class).

    The initialization window in milliseconds.

    Maximum operations allowed inside the init window.

    Exceed-action; default is 'block' (BURST-02).

    interface BurstGuard {
        action: Action;
        maxOps: number;
        windowMs: number;
    }
    Index

    Properties

    action: Action
    maxOps: number
    windowMs: number