ActiveListMaxActivationLimitBehavior

TYPE DEFINITION

Describes all the behaviors for when the limit of the ActiveList is surpassed.

  1. 'circular': the first item which was added will be removed so the last item can be added without violating the limit. This basically means that the first one in is the first one out.
  2. 'error': An error is thrown whenever the limit is surpassed, the error is called the ActiveListActivationLimitReachedError.
  3. 'ignore': Nothing happens when an item is added and the limit is reached. The item is simply not added, but no error is thrown.

Since 1.0.0

Union of

| "circular"
| "ignore"
| "error"