Revert "Prevent against future use-up-lots-of-mobile-data bugs"
authorMarius Gavrilescu <marius@ieval.ro>
Fri, 9 Aug 2013 18:44:53 +0000 (21:44 +0300)
committerMarius Gavrilescu <marius@ieval.ro>
Fri, 9 Aug 2013 18:44:53 +0000 (21:44 +0300)
This reverts commit 471a079f9631cd86c0f510b1277c80d040b943fb.

src/ro/ieval/fonbot/FonBotMainService.java

index 421caa7e03dfbfc90ebbf2981889b7d4cfbb40cd..8e8d67a0c535806b89f0e37a6eed6d46503dfe47 100644 (file)
@@ -19,7 +19,6 @@ import android.content.Intent;
 import android.content.IntentFilter;
 import android.net.ConnectivityManager;
 import android.os.IBinder;
-import android.os.SystemClock;
 import android.preference.PreferenceManager;
 import android.support.v4.app.NotificationCompat;
 import android.support.v4.content.LocalBroadcastManager;
@@ -71,25 +70,14 @@ public final class FonBotMainService extends Service {
         * @author Marius Gavrilescu <marius@ieval.ro>
         */
        private final class LongPollRunnable implements Runnable{
-               /**
-                * Minimum time between two runs of the long polling service, in milliseconds
-                *
-                * This ensures the long polling service won't use up all your mobile data.
-                */
-               private static final int MIN_MILLIS_BETWEEN_RUNS = 10000;
-
                public void run(){
                        final ConnectivityManager man=(ConnectivityManager) getSystemService(CONNECTIVITY_SERVICE);
                        final HttpCallExecutableRunnable runnable=new HttpCallExecutableRunnable("/get", null, FonBotMainService.this, new PollResultCallback(FonBotMainService.this), false);
 
                        Log.d("LongPollRunnable", "Long polling started");
-                       long lastRun = 0;
                        while(man.getActiveNetworkInfo() != null && man.getActiveNetworkInfo().isConnected())
                                try {
-                                       if(lastRun + MIN_MILLIS_BETWEEN_RUNS > System.currentTimeMillis())
-                                               SystemClock.sleep(lastRun + MIN_MILLIS_BETWEEN_RUNS - System.currentTimeMillis());
-                                       else
-                                               runnable.run();
+                                       runnable.run();
                                } catch (final Exception ex){
                                        ex.printStackTrace();
                                        break;
This page took 0.01178 seconds and 4 git commands to generate.