re-frame

Ryan 2023-09-19T13:07:39.603509Z

is there a way to get any info about the queue. of events dispatched with dispatch-later? we have some auth refresh events that may not be firing and I’m trying to get a handle on them.

djanus 2023-09-19T13:25:22.127709Z

https://github.com/day8/re-frame/blob/master/src/re_frame/fx.cljc#L78-L82`setTimeout`, so not out of the box, but you can easily implement your own version of it that keeps track of the refresh events that are waiting.

❤️ 1
Ryan 2023-09-19T14:46:10.963859Z

Thanks @dj942 thats exactly the pointer I needed 🙂