blob: 638fe6c17cc446891a34afac24ea4914c366ee3e [file] [log] [blame]
Madan Jampani62744c22014-10-04 20:51:10 -07001package org.onlab.netty;
2
3/**
4 * State transitions a decoder goes through as it is decoding an incoming message.
5 */
6public enum DecoderState {
7 READ_HEADER_VERSION,
8 READ_PREAMBLE,
9 READ_CONTENT_LENGTH,
10 READ_SERIALIZER_VERSION,
11 READ_CONTENT
12}