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

/**
 * Base {@link Message} implementation.
 */
public abstract class AbstractMessage implements Message {

    protected int length;

    @Override
    public int length() {
        return length;
    }

}