You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add `maxDelay` option to debounce feature. This allows setting a maximum time limit for how long a debounced run can be delayed, ensuring execution happens within a specified window even with continuous triggers.
7
+
8
+
```typescript
9
+
awaitmyTask.trigger(payload, {
10
+
debounce: {
11
+
key: "my-key",
12
+
delay: "5s",
13
+
maxDelay: "30m", // Execute within 30 minutes regardless of continuous triggers
0 commit comments