[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-04-24 UTC."],[],[],null,["# tasks.RateLimits interface\n\nHow congestion control should be applied to the function.\n\n**Signature:** \n\n export interface RateLimits \n\nProperties\n----------\n\n| Property | Type | Description |\n|------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------|\n| [maxConcurrentDispatches](./firebase-functions.tasks.ratelimits.md#tasksratelimitsmaxconcurrentdispatches) | number \\| [Expression](./firebase-functions.params.expression.md#paramsexpression_class)\\\u003cnumber\\\u003e \\| ResetValue | The maximum number of requests that can be processed at a time. If left unspecified, will default to 1000. |\n| [maxDispatchesPerSecond](./firebase-functions.tasks.ratelimits.md#tasksratelimitsmaxdispatchespersecond) | number \\| [Expression](./firebase-functions.params.expression.md#paramsexpression_class)\\\u003cnumber\\\u003e \\| ResetValue | The maximum number of requests that can be invoked per second. If left unspecified, will default to 500. |\n\ntasks.RateLimits.maxConcurrentDispatches\n----------------------------------------\n\nThe maximum number of requests that can be processed at a time. If left unspecified, will default to 1000.\n\n**Signature:** \n\n maxConcurrentDispatches?: number | Expression\u003cnumber\u003e | ResetValue;\n\ntasks.RateLimits.maxDispatchesPerSecond\n---------------------------------------\n\nThe maximum number of requests that can be invoked per second. If left unspecified, will default to 500.\n\n**Signature:** \n\n maxDispatchesPerSecond?: number | Expression\u003cnumber\u003e | ResetValue;"]]