All Downloads are FREE. Search and download functionalities are using the official Maven repository.

widebase.stream.codec.LengthDecoder.scala Maven / Gradle / Ivy

There is a newer version: 0.2.2
Show newest version
package widebase.stream.codec

import org.jboss.netty.handler.codec.frame.LengthFieldBasedFrameDecoder

import vario.data.sizeOf

/** Decode length.
 *
 * @author myst3r10n
 */
class LengthDecoder
  extends LengthFieldBasedFrameDecoder(
    Int.MaxValue,
    0,
    sizeOf.int,
    0,
    sizeOf.int)





© 2015 - 2024 Weber Informatics LLC | Privacy Policy