Idemtree / cordova-plugin-google-sheets

GNU General Public License v2.0
1 stars 1 forks source link

Make calls to CallbackContext object thread safe #25

Closed kvaldivia closed 6 years ago

kvaldivia commented 6 years ago

The GoogleSheets object has been keeping a reference to the latest CallbackContext sent to the exec method, that's not thread safe since any thread could make changes on a CallbackContext that wasn't its own.

Every operation related with authentication, authorization and any other account-related activity has been put into the AccountOperations class.

Closes SumaqIdeas/cordova-plugin-google-sheets#22