简体   繁体   中英

Dose GWT support netty ByteBuf?

In my project, I only use nio bytebuffer,because gwt support this, I wander, dose gwt support netty ByteBuf ?

<dependency>
    <groupId>io.netty</groupId>
    <artifactId>netty-buffer</artifactId>
    <version>4.0.25.Final</version>
</dependency>

Currently, I don't have gwt env, but I hope this project support gwt.

BTW, bytebuffer and bytebuf is easy to conver to each other by this comment .If the internal of bytebuf just use bytebuffer, so, there will be no problem under gwt.

Dose any one can test this ?

As far as I know GWT only supports ByteBuffer as this is part of Java itself. ByteBuf is a class which is part of Netty.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM