Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'incubation/bundles/org.eclipse.ecf.provider.mqtt.paho/src/org/eclipse/ecf/provider/mqtt/paho/container/AsyncPahoMessage.java')
-rw-r--r--incubation/bundles/org.eclipse.ecf.provider.mqtt.paho/src/org/eclipse/ecf/provider/mqtt/paho/container/AsyncPahoMessage.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/incubation/bundles/org.eclipse.ecf.provider.mqtt.paho/src/org/eclipse/ecf/provider/mqtt/paho/container/AsyncPahoMessage.java b/incubation/bundles/org.eclipse.ecf.provider.mqtt.paho/src/org/eclipse/ecf/provider/mqtt/paho/container/AsyncPahoMessage.java
new file mode 100644
index 000000000..85faa4c54
--- /dev/null
+++ b/incubation/bundles/org.eclipse.ecf.provider.mqtt.paho/src/org/eclipse/ecf/provider/mqtt/paho/container/AsyncPahoMessage.java
@@ -0,0 +1,15 @@
+package org.eclipse.ecf.provider.mqtt.paho.container;
+
+import java.io.Serializable;
+
+import org.eclipse.ecf.provider.mqtt.paho.identity.PahoID;
+
+public class AsyncPahoMessage extends PahoMessage {
+
+ private static final long serialVersionUID = -2538908397359614161L;
+
+ public AsyncPahoMessage(PahoID fromID, PahoID targetID, Serializable data) {
+ super(fromID, targetID, data);
+ }
+
+}

Back to the top