We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
workers-rs
0.5.0
wrangler
3.107.3
I try implement alert for Durable Object but not work
Code:
async fn fetch(&mut self, req: Request) -> Result<Response> { let env = self.env.clone(); let router = Router::with_data(self); router .post_async("/alarm/:obj_id", |mut req, ctx| async move { let state = ctx.data.state.borrow(); let mut storage = state.storage(); let data = req.json::<model::Alarm>().await?; let mut resp_msg = "Alarm existed!".to_string(); let prev_alarm = storage.get_alarm().await.unwrap(); if prev_alarm.is_none() { let dt = DateTime::from_timestamp(data.alert_time, 0).unwrap(); let scheduled_time = ScheduledTime::from(dt.timestamp_millis()); let mut opts = SetAlarmOptions::default(); opts.allow_unconfirmed = Some(true); state.wait_until(async move { match storage.set_alarm_with_options(scheduled_time, opts).await { Ok(_) => console_log!("set_alarm_with_options: OK"), Err(e) => console_log!("set_alarm_with_options: {:?}", e), }; }); let scheduled_str = dt.format("%d/%m/%Y %H:%M:%S%.3f"); resp_msg = format!("Alarm set to {}", scheduled_str); } else { // delete alarm if existed use for testing storage.delete_alarm().await.unwrap(); storage.delete_all().await.unwrap(); } console_debug!("[DEBUG] {}", resp_msg); Response::from_json(&model::DurablerResponse::new(200, resp_msg.as_str())) }) .run(req, env) .await } async fn alarm(&mut self) -> Result<Response> { console_log!(">>>>>>>>>>>>>>>>>>>> Alarm triggered"); let storage = self.state.storage(); let vals = storage.list().await.unwrap(); console_debug!("Vals: {:?}", vals); Response::from_json(&model::DurablerResponse::new(200, "Alarm triggered")) }
And log
Full source code: https://github.com/und3fined/worker-rs-alarm/tree/main
wrangler:dev
http://localhost:8877/__scheduled?cron=*+*+*+*+*
>>>>>>>>>>>>>>>>>>>> Alarm triggered
The text was updated successfully, but these errors were encountered:
has bug in my code
Need replace ScheduledTime::from(dt.timestamp_millis()); to ScheduledTime::from(dt);
ScheduledTime::from(dt.timestamp_millis());
ScheduledTime::from(dt);
For any contribue / owner please add document for offset in this code. It's a milliseconds not timestamp or Duration
offset
milliseconds
workers-rs/worker/src/durable.rs
Line 703 in 38af58a
Sorry, something went wrong.
I has a pull request for update problem #708
No branches or pull requests
Is there an existing issue for this?
What version of
workers-rs
are you using?0.5.0
What version of
wrangler
are you using?3.107.3
Describe the bug
I try implement alert for Durable Object but not work
Code:
And log
Full source code: https://github.com/und3fined/worker-rs-alarm/tree/main
Steps To Reproduce
wrangler:dev
http://localhost:8877/__scheduled?cron=*+*+*+*+*
>>>>>>>>>>>>>>>>>>>> Alarm triggered
The text was updated successfully, but these errors were encountered: