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

cn.t.tool.nettytool.util.ByteBufUtil Maven / Gradle / Ivy

package cn.t.tool.nettytool.util;

import io.netty.buffer.ByteBuf;
import io.netty.buffer.Unpooled;

public class ByteBufUtil {

    public static ByteBuf createByteBuf(byte[] data) {
        return Unpooled.copiedBuffer(data);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy