I have a problem using AsyncTask. I want my doing background send data to server via GET (success) BUT (Problem) when there is no connection i have to resend three time before save in my sqlite>? how can i do that ?

PS : before resend we have to let our doing background sleep(HOW?) for abit.

Thx

link|improve this question

35% accept rate
feedback

1 Answer

Threading rule for AsyncTask:

Only once execution can be performed, any other attempt (to resume) will throw exception. (see docs)

There you can't sleep() in AsyncTask

For that purpose you can create BroadcastReciever that will listen for connectivity changes.

link|improve this answer
how about wait(long mili) that allow our task wait until mili expired ?? – sayvortana Jul 28 '11 at 1:56
But how you gonna resume when it says that will throw exception when you attempt to resume? I think exception will be thrown at that point. – Nikola Despotoski Jul 28 '11 at 1:59
i modify more on exception show i can resume but the point is how to wait?? :) – sayvortana Jul 28 '11 at 2:08
1  
try { this.wait(222); } catch (InterruptedException e) { e.printStackTrace(); } Try this, if you succeed to resume, share how you did. I'd really like to know.. – Nikola Despotoski Jul 28 '11 at 2:11
Nikola, it's not work :'( resume I just modify its (doing background) as recursive function – sayvortana Jul 28 '11 at 2:27
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.