We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0978dde commit b809888Copy full SHA for b809888
Sources/ComposableArchitecture/Effects/Throttling.swift
@@ -41,7 +41,8 @@ extension Effect {
41
42
return Just(value)
43
.delay(
44
- for: scheduler.now.distance(to: throttleTime.advanced(by: interval)), scheduler: scheduler
+ for: scheduler.now.distance(to: throttleTime.advanced(by: interval)),
45
+ scheduler: scheduler
46
)
47
.handleEvents(
48
receiveOutput: { _ in throttleLock.sync { throttleTimes[id] = scheduler.now } }
0 commit comments