9 releases

0.3.0 Aug 11, 2023
0.2.6 Jan 21, 2023
0.2.5 Nov 29, 2022
0.2.4 Apr 13, 2022
0.1.0 Sep 13, 2019

#144 in WebAssembly

Download history 203840/week @ 2024-03-14 221454/week @ 2024-03-21 213982/week @ 2024-03-28 220774/week @ 2024-04-04 244633/week @ 2024-04-11 221151/week @ 2024-04-18 189717/week @ 2024-04-25 190327/week @ 2024-05-02 192596/week @ 2024-05-09 203815/week @ 2024-05-16 204094/week @ 2024-05-23 213756/week @ 2024-05-30 189743/week @ 2024-06-06 201128/week @ 2024-06-13 204253/week @ 2024-06-20 157532/week @ 2024-06-27

792,920 downloads per month
Used in 3,036 crates (58 directly)

MIT/Apache

17KB
155 lines

gloo-timers

Crates.io version Download docs.rs docs

API Docs | Contributing | Chat

Built with 🦀🕸 by The Rust and WebAssembly Working Group

Working with timers on the Web: setTimeout and setInterval.

These APIs come in two flavors:

  1. a callback style (that more directly mimics the JavaScript APIs), and
  2. a Futures and Streams API.

Timeouts

Timeouts fire once after a period of time (measured in milliseconds).

Timeouts with a Callback Function

use gloo_timers::callback::Timeout;

let timeout = Timeout::new(1_000, move || {
    // Do something after the one second timeout is up!
});

// Since we don't plan on cancelling the timeout, call `forget`.
timeout.forget();

Timeouts as Futures

With the futures feature enabled, a future module containing futures-based timers is exposed.

Dependencies

~1–1.6MB
~30K SLoC