• This project
    • Loading...
  • Sign in

홍길동 / onos

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • onos
  • ..
  • netty
  • netty
  • MessageHandler.java
  • Madan Jampani's avatar
    Adding missing files under onlab-netty · ab6d311b
    ab6d311b
    Madan Jampani authored 2014-10-02 16:30:14 -0700
MessageHandler.java 289 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package org.onlab.netty;

import java.io.IOException;

/**
 * Handler for a message.
 */
public interface MessageHandler {

    /**
     * Handles the message.
     * @param message message.
     * @throws IOException.
     */
    public void handle(Message message) throws IOException;
}