5 unstable releases

0.4.2 Sep 17, 2023
0.4.1 Sep 6, 2023
0.4.0 Sep 8, 2022
0.3.0 Aug 10, 2021
0.1.1 Mar 2, 2021

#725 in Asynchronous

Download history 25/week @ 2024-02-25 3/week @ 2024-03-03 29/week @ 2024-03-10 5/week @ 2024-03-17

62 downloads per month
Used in 5 crates (4 directly)

0BSD license

19KB
316 lines

killswitch

A killswitch is a special-purpose channel-like object used to signal to tasks that they should terminate.


lib.rs:

This library provides two separate structures for signalling (and receiveing) termination requests [in async contexts]:

KillSwitch

Signal a request for (multiple) async tasks to self-terminate.

use std::error::Error;
use tokio::time::{sleep, Duration};
use killswitch::KillSwitch;

#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
  let ks = KillSwitch::new();

  tokio::spawn(killable(String::from("test1"), ks.clone()));
  tokio::spawn(killable(String::from("test2"), ks.clone()));

  sleep(Duration::from_secs(1)).await;

  println!("Triggering kill switch");
  ks.trigger();

  tokio::spawn(killable(String::from("test3"), ks.clone()));
  tokio::spawn(killable(String::from("test4"), ks.clone()));

  // Wait for all waiters to drop
  ks.finalize().await;

  Ok(())
}

async fn killable(s: String, ks: KillSwitch) {
  println!("killable({}) entered", s);
  ks.wait().await;
  println!("killable({}) leaving", s);
}

killswitch was developed to help create abortable async tasks in conjuction with multiple-wait features such as the tokio::select! macro.

Dependencies

~0.4–6.5MB
~11K SLoC