Options
All
  • Public
  • Public/Protected
  • All
Menu

live-limit

Index

Enumerations

Classes

Type Aliases

Type Aliases

LiveLimitConfig: { maxLive: number; maxReached?: MaxReachedBehavior }

The configuration used to set up the live limiter.

Type declaration

  • maxLive: number

    The maximum number of calls that can be live at the same time.

    Once this number is reached, additional calls are queued or dropped based on the maxReached setting.

  • Optional maxReached?: MaxReachedBehavior

    How to handle additional calls once maxLive is reached.

    This is Queue by default, meaning that additional calls are queued and will wait to execute.

Generated using TypeDoc