Identifying Async Functions in Your Code
How can I know what function is doing async work ? I've this error in my code (sometimes) :
this error happens randomly (I mean, I have this error, I reload my page and it's gone)
Basically this is what I do with runSync when I search in all my codebase:
- create queues with Queue.unbounded<>
- get subscription ref: SubscriptionRef.get
- create a subscription ref (via make)
- read from local storage using the key value store :
- updateAndGetEffect on a subscriptionRef
this error happens randomly (I mean, I have this error, I reload my page and it's gone)
Basically this is what I do with runSync when I search in all my codebase:
- create queues with Queue.unbounded<>
- get subscription ref: SubscriptionRef.get
- create a subscription ref (via make)
- read from local storage using the key value store :
- updateAndGetEffect on a subscriptionRef
