- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 927
Open
Description
AsyncOperationHandleConfiguredSource listens for the Completed callback, but if the handle is released manually, the internal logic doesn't detect this. I'm using a CancellationTokenSource as a fail-safe (e.g., in OnDestroy), and I'd like to interrupt the current request and begin a new one without losing or disposing the token source.
To support this, ConfiguredSource should also subscribe to the handle’s Destroyed callback so that manual release can be handled properly within its lifecycle.
Activity