-
Debouncer- allows submitting work that will only be executed if/when no other submissions occur during a specified time interval. -
Throttler- allows submitting work that will only be executed at most once during a given time window.
import Debouncer
let debouncer = Debouncer(duration: .seconds(2), clock: .suspending)
func some(operation: @escaping () async -> Void) async {
// The operations submitted here will be debounced by 2 secs.
await debouncer.submit(operation: operation)
}
import Throttler
let throttler = Throttler(duration: .seconds(2), latest: false, clock: .suspending)
func some(operation: @escaping () async -> Void) async {
// The operations submitted here will be throttled by 2 secs.
await throttler.submit(operation: operation)
}
Add the following line to the dependencies in your Package.swift file:
.package(url: "https://github.com/manuelCarlos/RateLimiters.git")
.target(name: "<target>", dependencies: [
.product(name: "Debouncer", package: "RateLimiters")
]),
.target(name: "<target>", dependencies: [
.product(name: "Throttler", package: "RateLimiters")
]),