Example usage for io.netty.handler.codec LineBasedFrameDecoder subclass-usage

List of usage examples for io.netty.handler.codec LineBasedFrameDecoder subclass-usage

Introduction

In this page you can find the example usage for io.netty.handler.codec LineBasedFrameDecoder subclass-usage.

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);