Ejemplo n.º 1
0
  private void runPoll() {
    long now = System.currentTimeMillis();
    long diff = (now - DM.I.getConfiguration().getInternLastPollTime()) / 1000;
    DM.I.getConfiguration().setInternLastPollTime(now);

    Log.d(LOGT, "Received poll request. Last poll was " + diff + "s ago");

    mNagiosPollHandler.poll();
  }
Ejemplo n.º 2
0
 @Override
 public void onStart(Intent intent, int startId) {
   super.onStart(intent, startId);
   DM.I.getPollHandler().poll();
 }
Ejemplo n.º 3
0
 public String getLastPollTimeSuccessfullText() {
   return "Last successfull update was "
       + Millis.msToText(
           System.currentTimeMillis() - DM.I.getConfiguration().getInternLastPollTimeSuccessfull())
       + " ago";
 }