Use case: to download reports for ALL accounts under the top manager account, we do:
- Create an AdWordsSession object from top manager account
- For each AdWords account, spawn a thread
- In the thread clone the AdWordsSession object, call setClientCustomerId() with that AdWords account ID.
- Use this AdWordsSession to invoke relevant API
We need a copy constructor in step 3. Our copy implementation cannot guarantee thread safety (in theory).
Reactions are currently unavailable
Use case: to download reports for ALL accounts under the top manager account, we do:
We need a copy constructor in step 3. Our copy implementation cannot guarantee thread safety (in theory).