List of usage examples for io.netty.handler.codec LineBasedFrameDecoder subclass-usage
From source file org.traccar.protocol.AlematicsFrameDecoder.java
public class AlematicsFrameDecoder extends LineBasedFrameDecoder { private static final int MESSAGE_MINIMUM_LENGTH = 2; public AlematicsFrameDecoder(int maxFrameLength) { super(maxFrameLength);
From source file org.traccar.protocol.IntellitracFrameDecoder.java
public class IntellitracFrameDecoder extends LineBasedFrameDecoder { private static final int MESSAGE_MINIMUM_LENGTH = 0; public IntellitracFrameDecoder(int maxFrameLength) { super(maxFrameLength);