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/PahoServerConnection.java')
-rw-r--r--incubation/bundles/org.eclipse.ecf.provider.mqtt.paho/src/org/eclipse/ecf/provider/mqtt/paho/container/PahoServerConnection.java11
1 files changed, 6 insertions, 5 deletions
diff --git a/incubation/bundles/org.eclipse.ecf.provider.mqtt.paho/src/org/eclipse/ecf/provider/mqtt/paho/container/PahoServerConnection.java b/incubation/bundles/org.eclipse.ecf.provider.mqtt.paho/src/org/eclipse/ecf/provider/mqtt/paho/container/PahoServerConnection.java
index 2012ffe0a..eed0562c4 100644
--- a/incubation/bundles/org.eclipse.ecf.provider.mqtt.paho/src/org/eclipse/ecf/provider/mqtt/paho/container/PahoServerConnection.java
+++ b/incubation/bundles/org.eclipse.ecf.provider.mqtt.paho/src/org/eclipse/ecf/provider/mqtt/paho/container/PahoServerConnection.java
@@ -1,13 +1,13 @@
package org.eclipse.ecf.provider.mqtt.paho.container;
-import java.io.IOException;
-
import org.eclipse.ecf.core.identity.ID;
import org.eclipse.ecf.core.util.ECFException;
import org.eclipse.ecf.provider.comm.ISynchAsynchConnection;
import org.eclipse.ecf.provider.mqtt.paho.identity.PahoID;
+import org.eclipse.paho.client.mqttv3.MqttMessage;
-public class PahoServerConnection extends AbstractPahoConnection implements ISynchAsynchConnection {
+public class PahoServerConnection extends AbstractPahoConnection implements
+ ISynchAsynchConnection {
public PahoServerConnection(PahoID clientID) {
super(clientID);
@@ -33,9 +33,10 @@ public class PahoServerConnection extends AbstractPahoConnection implements ISyn
return false;
}
- public Object sendSynch(ID receiver, byte[] data) throws IOException {
+ @Override
+ protected void handleMessageArrived(String topic2, MqttMessage message) {
// TODO Auto-generated method stub
- return null;
+
}
}

Back to the top