Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'apps/MQTTSN-UDP-Client/src/org/eclipse/paho/mqttsn/udpclient/SimpleMqttsCallbackPreDefinedTopicId.java')
-rw-r--r--apps/MQTTSN-UDP-Client/src/org/eclipse/paho/mqttsn/udpclient/SimpleMqttsCallbackPreDefinedTopicId.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/apps/MQTTSN-UDP-Client/src/org/eclipse/paho/mqttsn/udpclient/SimpleMqttsCallbackPreDefinedTopicId.java b/apps/MQTTSN-UDP-Client/src/org/eclipse/paho/mqttsn/udpclient/SimpleMqttsCallbackPreDefinedTopicId.java
new file mode 100644
index 0000000..cc6934a
--- /dev/null
+++ b/apps/MQTTSN-UDP-Client/src/org/eclipse/paho/mqttsn/udpclient/SimpleMqttsCallbackPreDefinedTopicId.java
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2010, 2013 IBM Corp.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * and Eclipse Distribution License v1.0 which accompany this distribution.
+ *
+ * The Eclipse Public License is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * and the Eclipse Distribution License is available at
+ * http://www.eclipse.org/org/documents/edl-v10.php.
+ *
+ * Contributors:
+ * Ian Craggs - initial API and implementation and/or initial documentation
+ *******************************************************************************/
+
+
+package org.eclipse.paho.mqttsn.udpclient;
+
+public interface SimpleMqttsCallbackPreDefinedTopicId extends SimpleMqttsCallback{
+ public void publishArrivedPreDefinedTopicId(boolean ret, int qos, int topicId, byte[] msg);
+}

Back to the top