[][src]Module actix_rt::time

Utilities for tracking time.

Modules

timeout

Allows a future or stream to execute for a maximum amount of time.

Structs

Delay

A future that completes at a specified instant in time.

Interval

A stream representing notifications at fixed interval

Timeout

Allows a Future or Stream to execute for a limited amount of time.

Functions

delay

Create a Future that completes at deadline.

delay_for

Create a Future that completes in duration from now.

interval

Creates new Interval that yields with interval of duration. The first tick completes immediately.

interval_at

Creates new Interval that yields with interval of period with the first tick completing at at.