rate {ratelimitr} | R Documentation |
Create a new rate
rate(n, period)
n |
Number of allowed events within a period |
period |
Length (in seconds) of measurement period |
## a function
f <- function() NULL
## limit f to 10 calls per second
limited_f <- limit_rate(f, rate(n = 10, period = 1))