blob: 5ce6d44a1d9b1db9bb68a0d6a1f17af0e61b736b [file] [log] [blame]
toma7083182014-09-25 21:38:03 -07001package org.onlab.nio;
2
3/**
4 * Representation of a message transferred via {@link MessageStream}.
5 */
6public interface Message {
7
8 /**
9 * Gets the message length in bytes.
10 *
11 * @return number of bytes
12 */
13 int length();
14
15}