Can i call an asyncTask multiple times with different parameters like this:
new MyAsyncTask.execute(
                     new String("x"),
                     new String(firstString)
                   );
new MyAsyncTask.execute(
                     new String("y"),
                     new String(secondString)
                   );                     
Is the above syntax correct? If yes, do the two calls run serialized by default?
 
     
    