formatting of eclipse import tutorial authored by Björn Butzin's avatar Björn Butzin
...@@ -168,9 +168,9 @@ clientChannel.sendMessage(request); ...@@ -168,9 +168,9 @@ clientChannel.sendMessage(request);
#### 4. Wait for CoapResponse & Print the CoapResponse on the console #### 4. Wait for CoapResponse & Print the CoapResponse on the console
* A client has some callbacks that are invoked, when the corresponding event occurs * A client has some callbacks that are invoked, when the corresponding event occurs
```java ```java
public void onConnectionFailed(...) public void onConnectionFailed(...);
public void onResponse(...) // = Unicast public void onResponse(...); // = Unicast
public void onMCResponse(...) // MC = Multicast public void onMCResponse(...); // MC = Multicast
``` ```
* Run Server: select Server.java and click on *[Run » Run]* in the Menu bar * Run Server: select Server.java and click on *[Run » Run]* in the Menu bar
... ...
......