How to detect user abort
I want save some flags when a user abort my actor.
Is there any way I can detect if the actor aborted.
Run a script when abort happen via event or any other mechanism ?
Thanks
1 Reply
sensitive-blue•3y ago
There are 2 options:
1. If the abort is graceful abort, you can handle it with
aborting
event.
2. For all aborts, you can attach a webhook add runtime on abort. But be careful to not download any sensitive data from users!