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
The pool can be tuned to adjust both the time spent within [`poll(2)`](https://www.freebsd.org/cgi/man.cgi?poll) and at the end of each iteration with [`Task.yield()`](https://developer.apple.com/documentation/swift/task/3814840-yield) or [`Task.sleep()`](https://developer.apple.com/documentation/swift/task/3862701-sleep)
321
321
322
322
```swift
323
-
let pool =PollingSocketPool(pollInterval: .immediate, loopInterval: .seconds(0.05))
323
+
let pool =PollingSocketPool(pollInterval: .immediate, loopInterval: .seconds(0.1))
0 commit comments