make start and stop of Tor service all hanlded through executor

This commit is contained in:
Nathan Freitas 2016-10-21 14:53:58 -04:00
parent d8648a5864
commit 2125db1504
2 changed files with 5 additions and 6 deletions

View File

@ -41,8 +41,7 @@ public class OnBootReceiver extends BroadcastReceiver {
Intent torService = new Intent(context, TorService.class);
torService.setAction(action);
context.startService(torService);
}

View File

@ -109,8 +109,7 @@ public class TorService extends Service implements TorServiceConstants, OrbotCon
boolean mIsLollipop = Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP;
private ExecutorService mExecutor = Executors.newFixedThreadPool(1);
private ExecutorService mExecutor = Executors.newFixedThreadPool(3);
TorEventHandler mEventHandler;
@ -296,7 +295,7 @@ public class TorService extends Service implements TorServiceConstants, OrbotCon
*/
public int onStartCommand(Intent intent, int flags, int startId) {
if (intent != null)
new Thread (new IncomingIntentRouter(intent)).start();
exec (new IncomingIntentRouter(intent));
else
Log.d(OrbotConstants.TAG, "Got null onStartCommand() intent");
@ -363,13 +362,14 @@ public class TorService extends Service implements TorServiceConstants, OrbotCon
private void stopTor ()
{
mExecutor.execute(new Runnable ()
exec(new Runnable ()
{
public void run ()
{
stopTorAsync();
}
});
}
private void stopTorAsync () {