Poll every 3 seconds instead of every 5 seconds

This commit is contained in:
Cameron Gutman 2014-11-16 18:14:50 -08:00
parent 94ba7f8e45
commit b2ba216cd1

View File

@ -20,7 +20,7 @@ import android.os.Binder;
import android.os.IBinder;
public class ComputerManagerService extends Service {
private static final int POLLING_PERIOD_MS = 5000;
private static final int POLLING_PERIOD_MS = 3000;
private static final int MDNS_QUERY_PERIOD_MS = 1000;
private ComputerManagerBinder binder = new ComputerManagerBinder();