Effect and Event Loop Behavior in Cloudflare Durable Objects

Not sure if my terminology is right here, but does using Effect create "microtasks" or yield to the event loop in any "unexpected" places? i.e. with effects that don't do any IO, executing promises etc.?

I'm thinking of using Effect in Cloudflare Durable Objects, and that's a single threaded environment with a concept of input and output gates when you read or write to storage, basically meaning that a series of actions wont be interrupted and are basically transactional, as long as you don't await something that isn't the built in storage.
Was this page helpful?