LoginSignup
1
0

More than 1 year has passed since last update.

RustでWebAssembly: web_sysでasyncなsleepをする

Last updated at Posted at 2021-10-08

はじめに

RustでWebAssemblyを作っていて、async な sleep() をするコードです。

コード

以下のような関数を定義して、

use futures::Future;
use js_sys::Promise;
use wasm_bindgen::prelude::*;
use wasm_bindgen_futures::JsFuture;

pub fn sleep(ms: i32) -> impl Future {
    let p = Promise::new(&mut |resolve, _| {
        web_sys::window()
            .unwrap()
            .set_timeout_with_callback_and_timeout_and_arguments_0(&resolve, ms)
            .unwrap();
    });
    JsFuture::from(p)
}

こんな感じで使います。

async fn hogehoge() {
    sleep(1).await;  // sleep 1ms
}

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0