Reputation: 1042
My question is:
"How does the stacking work on Asynchronous threading?"
For example if I call upon a new class and it gets reused for a loop for example would it cause a data disarrangement if they are all taken at different times?.
Upvotes: 0
Views: 100
Reputation: 7416
What do you mean by
if they are all taken at different times?
If you are thinking about creating multiple instances of the same AsyncTask class, then no problem, each instance will get their own thread.
Upvotes: 1