summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjandegr <jandegr@users.noreply.github.com>2018-05-28 20:51:13 +0200
committerGitHub <noreply@github.com>2018-05-28 20:51:13 +0200
commit360d3b3f21183c76e5ef7c13d3943daaecbedb32 (patch)
treecf6f6a69e1d17ec899f4b0dbb62ca122969f0105
parentebfe901cfab94b2375e92869b4ee0840d43042a5 (diff)
downloadnavit-360d3b3f21183c76e5ef7c13d3943daaecbedb32.tar.gz
cleanup
-rw-r--r--NavitTimeout.java58
1 files changed, 58 insertions, 0 deletions
diff --git a/NavitTimeout.java b/NavitTimeout.java
new file mode 100644
index 000000000..4a194c899
--- /dev/null
+++ b/NavitTimeout.java
@@ -0,0 +1,58 @@
+/**
+ * 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);
+ }
+}
+