• 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
  • ..
  • nio
  • nio
  • Message.java
  • tom's avatar
    Working on IO loop stuff. · a7083182
    a7083182
    tom authored 2014-09-25 21:38:03 -0700
Message.java 246 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package org.onlab.nio;

/**
 * Representation of a message transferred via {@link MessageStream}.
 */
public interface Message {

    /**
     * Gets the message length in bytes.
     *
     * @return number of bytes
     */
    int length();

}