What does actor reentrancy mean?
If you captured any state before doing some async work in your actor, then by the time your task is resumed, your captured state may be stale. This is what actor reentrancy is about. You should understand your captured state may have became stale. Because of that, you should avoid capturing things that are subject to change before your task is suspended. Only retrieve values after your task is resumed....