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

#642 in WebAssembly

Download history 213255/week @ 2024-08-13 214890/week @ 2024-08-20 217158/week @ 2024-08-27 243986/week @ 2024-09-03 227951/week @ 2024-09-10 223652/week @ 2024-09-17 245934/week @ 2024-09-24 253921/week @ 2024-10-01 262943/week @ 2024-10-08 269594/week @ 2024-10-15 283249/week @ 2024-10-22 249205/week @ 2024-10-29 384206/week @ 2024-11-05 402255/week @ 2024-11-12 377032/week @ 2024-11-19 232959/week @ 2024-11-26

1,447,061 downloads per month
Used in 3,287 crates (67 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

~0.9–1.6MB
~30K SLoC