12 releases

0.1.11 Mar 20, 2022
0.1.10 Feb 25, 2022
0.1.9 Mar 28, 2021
0.1.6 Dec 24, 2020

#256 in Asynchronous

Download history 29/week @ 2023-12-04 67/week @ 2023-12-11 47/week @ 2023-12-18 96/week @ 2023-12-25 8/week @ 2024-01-01 69/week @ 2024-01-08 78/week @ 2024-01-15 14/week @ 2024-01-22 8/week @ 2024-01-29 22/week @ 2024-02-05 36/week @ 2024-02-12 24/week @ 2024-02-19 50/week @ 2024-02-26 48/week @ 2024-03-04 40/week @ 2024-03-11 47/week @ 2024-03-18

188 downloads per month
Used in 12 crates (9 directly)

Apache-2.0

41KB
667 lines

safina-timer

crates.io version license: Apache 2.0 unsafe forbidden pipeline status

Provides async sleep_for and sleep_until functions.

This crate is part of safina, a safe async runtime.

Features

Limitations

  • Building on stable requires the feature once_cell. This uses once_cell crate which contains some unsafe code. This is necessary until std::lazy::OnceCell is stable.
  • Timers complete around 2ms late, but never early
  • Allocates memory

Examples

safina_timer::start_timer_thread();
let duration = Duration::from_secs(10);
safina_timer::sleep_for(duration).await;
safina_timer::start_timer_thread();
let deadline =
    Instant::now() + Duration::from_secs(1);
safina_timer::sleep_until(deadline).await;
safina_timer::start_timer_thread();
let deadline =
    Instant::now() + Duration::from_secs(1);
let req = safina_timer::with_deadline(
    read_request(), deadline).await??;
let data = safina_timer::with_deadline(
    read_data(req), deadline).await??;
safina_timer::with_deadline(
    write_data(data), deadline ).await??;
safina_timer::with_deadline(
    send_response(data), deadline).await??;
safina_timer::start_timer_thread();
let req = safina_timer::with_timeout(
    read_request(), Duration::from_secs(1)
).await??;
let data = safina_timer::with_timeout(
    read_data(req), Duration::from_secs(2)
).await??;
safina_timer::with_timeout(
    write_data(data), Duration::from_secs(2)
).await??;
safina_timer::with_timeout(
    send_response(data),
    Duration::from_secs(1)
).await??;

Documentation

https://docs.rs/safina-timer

Alternatives

  • futures-timer
    • popular
    • Supports: Wasm, Linux, Windows, macOS
    • Contains generous amounts of unsafe code
    • Uses std::thread::park_timeout as its source of time
  • async-io
    • popular
    • single and repeating timers
    • Supports: Linux, Windows, macOS, iOS, Android, and many others.
    • Uses polling crate which makes unsafe calls to OS.
  • async-timer
    • Supports: Linux & Android
    • Makes unsafe calls to OS
  • tokio
    • very popular
    • single and repeating timers
    • Supports: Linux, macOS, other unix-like operating systems, Windows
    • Fast, internally complicated, and full of unsafe
  • embedded-async-timer
    • no_std
    • Supports bare_metal

Changelog

  • v0.1.11 - Remove some type constraints.
  • v0.1.10 - Use safina-executor v0.2.0.
  • v0.1.9 - Name the timer thread.
  • v0.1.8 - Increase test coverage
  • v0.1.7 - Support stable with rust 1.51 and once_cell.
  • v0.1.6 - Update dependencies
  • v0.1.5 - Update docs
  • v0.1.4 - Upgrade to new safina-executor version which removes need for Box::pin.
  • v0.1.3 - Add badges to readme
  • v0.1.2
  • v0.1.1
  • v0.1.0 - First published version

TO DO

  • Add a way to schedule jobs (FnOnce structs).

Release Process

  1. Edit Cargo.toml and bump version number.
  2. Run ./release.sh

License: Apache-2.0

Dependencies

~49KB