summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjandegr <jandegr@users.noreply.github.com>2018-05-28 21:04:04 +0200
committerGitHub <noreply@github.com>2018-05-28 21:04:04 +0200
commitf8090d4fb7bf34e6933a5a37e86a0196d84f73dd (patch)
treef5a238fef0a6574623963b7a426d16634eeb708d
parent360d3b3f21183c76e5ef7c13d3943daaecbedb32 (diff)
downloadnavit-f8090d4fb7bf34e6933a5a37e86a0196d84f73dd.tar.gz
Delete NavitTimeout.java
-rw-r--r--NavitTimeout.java58
1 files changed, 0 insertions, 58 deletions
diff --git a/NavitTimeout.java b/NavitTimeout.java
deleted file mode 100644
index 4a194c899..000000000
--- a/NavitTimeout.java
+++ /dev/null
@@ -1,58 +0,0 @@
-/**
- * Navit, a modular navigation system.
- * Copyright (C) 2005-2008 Navit Team
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * version 2 as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the
- * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-package org.navitproject.navit;
-
-import android.os.Handler;
-import android.os.Message;
-import android.util.Log;
-
-
-
-class NavitTimeout implements Runnable {
- private static Handler handler = new Handler() {
- public void handleMessage(Message m) {
- Log.e("Navit","Handler received message");
- }
- };
- private boolean mEventMulti;
- private int mEventCallbackid;
- private int mEventTimeout;
- public native void timeoutCallback(int id);
-
- NavitTimeout(int timeout, boolean multi, int callbackid) {
- mEventTimeout = timeout;
- mEventMulti = multi;
- mEventCallbackid = callbackid;
- handler.postDelayed(this, mEventTimeout);
- }
-
- public void run() {
- // Log.e("Navit","Handle Event");
- if (mEventMulti) {
- handler.postDelayed(this, mEventTimeout);
- }
- timeoutCallback(mEventCallbackid);
- }
-
- public void remove() {
- handler.removeCallbacks(this);
- }
-}
-