Sunday, November 19, 2017

Is Java GMail API thread-safe?

Nope. Gmail implementation is not thread-safe.
Therefore, if you are running as a multi-threaded application, each thread that you are making requests from must have its own instance of httplib2.Http().
Resource Link: gmail api service
Original Link: https://stackoverflow.com/a/37193685/2293534

No comments:

Post a Comment