You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently all of the API calls run synchronously using okhttp's Call.execute. This will block the calling thread which in some contexts just isn't allowed.
I can work around this by rolling my own *Async complementary methods that will use Call.enqueue instead.
I'm writing this issue to gauge interest on whether these methods would be generally useful to the library and the people who use it.
The text was updated successfully, but these errors were encountered:
Currently all of the API calls run synchronously using okhttp's Call.execute. This will block the calling thread which in some contexts just isn't allowed.
I can work around this by rolling my own *Async complementary methods that will use Call.enqueue instead.
I'm writing this issue to gauge interest on whether these methods would be generally useful to the library and the people who use it.
The text was updated successfully, but these errors were encountered: