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

io.github.shanqiang.network.client.ResponseDecoder Maven / Gradle / Ivy

package io.github.shanqiang.network.client;

import io.netty.handler.codec.LengthFieldBasedFrameDecoder;

public class ResponseDecoder extends LengthFieldBasedFrameDecoder {
    public ResponseDecoder() {
        super(Integer.MAX_VALUE, 0, RequestEncoder.LENGTH_FIELD_LENGTH, 0, RequestEncoder.LENGTH_FIELD_LENGTH, true);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy