-
Notifications
You must be signed in to change notification settings - Fork 5
Description
Is your feature request related to a problem? Please describe.
Since there are connections that are being established, the SDK should support async operations. Currently the documentation says that the constructor can block up to 10 seconds. That doesn't sound like good design. For the other operations it is not clear how long the flag evaluation might block if at all. Since its not async I would assume no blocking since its designed for server side operations.
Describe the solution you'd like
All operations and methods that might be blocking due to network, file, etc calls should make async calls available.
Describe alternatives you've considered
Not much that can be done there except requests being blocked. They also cannot be cancelled when initiated.