summaryrefslogtreecommitdiffstats
path: root/mobile/android/services/src/main/java/org/mozilla/gecko/sync/net/ConnectionMonitorThread.java
blob: 1a201177186fe7f9cca0d03716d193f4dfdc9622 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

package org.mozilla.gecko.sync.net;

import org.mozilla.gecko.background.common.log.Logger;

/**
 * Every <code>REAP_INTERVAL</code> milliseconds, wake up
 * and expire any connections that need cleaning up.
 *
 * When we're told to shut down, take the connection manager
 * with us.
 */
public class ConnectionMonitorThread extends Thread {
  private static final long REAP_INTERVAL = 5000;     // 5 seconds.
  private static final String LOG_TAG = "ConnectionMonitorThread";

  private volatile boolean stopping;

  @Override
  public void run() {
    try {
      while (!stopping) {
        synchronized (this) {
          wait(REAP_INTERVAL);
          BaseResource.closeExpiredConnections();
        }
      }
    } catch (InterruptedException e) {
      Logger.trace(LOG_TAG, "Interrupted.");
    }
    BaseResource.shutdownConnectionManager();
  }

  public void shutdown() {
    Logger.debug(LOG_TAG, "ConnectionMonitorThread told to shut down.");
    stopping = true;
    synchronized (this) {
      notifyAll();
    }
  }
}