rate: Create a new rate

Description Usage Arguments See Also Examples

Description

Create a new rate

Usage

1
rate(n, period)

Arguments

n

Number of allowed events within a period

period

Length (in seconds) of measurement period

See Also

limit_rate

Examples

1
2
3
4
5
## a function
f <- function() NULL

## limit f to 10 calls per second
limited_f <- limit_rate(f, rate(n = 10, period = 1))

tarakc02/ratelimitr documentation built on May 31, 2019, 3:55 a.m.