Learn R Programming

ratelimitr (version 0.4.1)

rate: Create a new rate

Description

Create a new rate

Usage

rate(n, period)

Arguments

n

Number of allowed events within a period

period

Length (in seconds) of measurement period

See Also

limit_rate

Examples

Run this code
# NOT RUN {
## a function
f <- function() NULL

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

# }

Run the code above in your browser using DataLab