Commit 4855cbf9 by Kim Jinsung

10秒ごとのサーバ通信タスクと同時処理しないように13秒にセット

parent 95473f47
......@@ -91,7 +91,8 @@ public class ToiletApplication extends Application {
startTimer();
Logger.d(TAG, "*** ReStartTime currentDate = "+ currentDateString);
}
handler.postDelayed(this, 10000);//10秒後に再度実行
//10秒ごとのサーバ通信タスクと同時処理しないように13秒にセット
handler.postDelayed(this, 13000);//13秒後に再度実行
}
});
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment