DecoderState.java 261 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 package org.onlab.netty; /** * State transitions a decoder goes through as it is decoding an incoming message. */ public enum DecoderState { READ_HEADER_VERSION, READ_PREAMBLE, READ_CONTENT_LENGTH, READ_SERIALIZER_VERSION, READ_CONTENT }