Documentation
    Preparing search index...

    Variable DEFAULT_BURST_ACTIONConst

    DEFAULT_BURST_ACTION: Action = 'block'

    Default action for the init-burst guard: block.

    The burst guard is the one documented exception to the conservative flag default. A napplet that fires more than DEFAULT_BURST_MAX_OPS operations within its initialization window is almost certainly misbehaving and should be stopped immediately (BURST-02).

    const guard: BurstGuard = { windowMs: DEFAULT_BURST_WINDOW_MS, maxOps: DEFAULT_BURST_MAX_OPS, action: DEFAULT_BURST_ACTION };