blob: 5f9bfa437491ee78a5a51a4bfb371c9f623d95e2 [file] [log] [blame]
pankaj366ce8b2014-10-07 17:18:37 -07001package org.onlab.onos.foo;
2
3import java.io.IOException;
4
5import org.onlab.netty.Message;
6import org.onlab.netty.MessageHandler;
pankaj366ce8b2014-10-07 17:18:37 -07007
8
9/**
10 * Message handler that echos the message back to the sender.
11 */
12public class NettyEchoHandler implements MessageHandler {
13
pankaj366ce8b2014-10-07 17:18:37 -070014 @Override
15 public void handle(Message message) throws IOException {
pankaj366ce8b2014-10-07 17:18:37 -070016 message.respond(message.payload());
17 }
18}