hello all! In all examples I see alarms being scheduled for several seconds in the future. If I want
hello all! In all examples I see alarms being scheduled for several seconds in the future. If I wanted to schedule immediate async work (i.e.
await this.ctx.storage.setAlarm(Date.now()); ) could I run into any issues? Are there any gotchas here? I have been using this and it works, however, I have encountered (what seems to be) race conditions with this async work so I wonder if that immediate alarm has anything to do with this.

