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
[limit f e] limits the rate of [e] with [f].
For example, to limit the rate of an event to 1 per second you
can use: [limit (fun () -> Lwt_unix.sleep 1.0) event].
however limited events occur more that once per second, since after a limiter awakes new event occurs instantly.
The text was updated successfully, but these errors were encountered:
The documentation states that
however limited events occur more that once per second, since after a limiter awakes new event occurs instantly.
The text was updated successfully, but these errors were encountered: