moves settings to proper Android imp of background thread
svn:r24648
This commit is contained in:
parent
651377bd5f
commit
b4b49f750e
|
@ -0,0 +1,32 @@
|
||||||
|
package org.torproject.android;
|
||||||
|
|
||||||
|
import org.torproject.android.service.ITorService;
|
||||||
|
|
||||||
|
import android.os.AsyncTask;
|
||||||
|
import android.os.RemoteException;
|
||||||
|
|
||||||
|
public class ProcessSettingsAsyncTask extends AsyncTask<ITorService, Integer, Long>
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected Long doInBackground(ITorService... torService) {
|
||||||
|
|
||||||
|
try {
|
||||||
|
torService[0].processSettings();
|
||||||
|
} catch (RemoteException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
|
||||||
|
return 100L;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void onProgressUpdate(Integer... progress) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void onPostExecute(Long result) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue