Hi all,
I need to run a token refresh operation, which if it gets interrupted (by an HTTP cancel for example) would corrupt my tokens. Is there anyway in NestJS to have a promise / callback which can't be HTTP cancelled?
Maybe I'm looking for a work queue which could take a callback that is not tied to the requests lifetime. I have been trying to implement this with RXJS through returning an exhaust map of my operation, but it's still cancellable.