Skip to content
Effect Days 2026 Get your ticket

DurableRateLimiter

1 exports Added in v1.0.0 Source

Accessors

rateLimit

Added in v1.0.0 Source

Signature

declare function rateLimit(options: {
readonly algorithm?: "fixed-window" | "token-bucket";
readonly key: string;
readonly limit: number;
readonly name: string;
readonly tokens?: number;
readonly window: DurationInput;
}): Activity<Void, any, RateLimiter>