blob: b038db84c1c647adeb4b7377fbf165932cea56f9 [file] [log] [blame]
package org.onlab.netty;
import java.io.IOException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
//FIXME: Should be move out to test or app
/**
* Message handler that echos the message back to the sender.
*/
public class EchoHandler implements MessageHandler {
private final Logger log = LoggerFactory.getLogger(getClass());
@Override
public void handle(Message message) throws IOException {
log.info("Received message. Echoing it back to the sender.");
message.respond(message.payload());
}
}