Skip to content

Interface: GroupRateLimitOptions

Defined in: glide-mq/src/errors.ts:52

Properties

currentJob?

ts
optional currentJob?: "requeue" | "fail";

Defined in: glide-mq/src/errors.ts:54

What happens to the current job. Default: 'requeue' (re-parks without consuming retry).


extend?

ts
optional extend?: "max" | "replace";

Defined in: glide-mq/src/errors.ts:58

How to handle existing rate limit. Default: 'max' (never shortens).


requeuePosition?

ts
optional requeuePosition?: "front" | "back";

Defined in: glide-mq/src/errors.ts:56

Where to re-park the job in the group queue. Default: 'front' (resumes first).

Released under the Apache-2.0 License.