SimpleAuth
SimpleAuth copied to clipboard
Prevent multiple authorization operations from happening simultaneously
This could be done with one of two approaches:
- Put all authorizations on a serial queue and run them one at a time
- Fail and return an error if the consumer initiates an authorization while one is already in progress
Not sure which is better yet.