2018-08-10 Netty:4.x

  • Netty简介:
    https://my.oschina.net/flashsword/blog/162936

  • 样例代码:
    http://www.infoq.com/cn/articles/netty-high-performance

Netty 稳定版本 4.0.56.Final和4.1.28.Final

https://mvnrepository.com/artifact/io.netty/netty-buffer
compile group: 'io.netty', name: 'netty-buffer', version: '4.1.28.Final'

dependencies {
    compile 'io.netty:netty-all:4.0.56.Final'
    // (4.1.28版本)
    // compile 'io.netty:netty-all:4.1.28.Final'
    // (5.0.0-Alpha2版本已停止开发, 请勿使用)
    // compile 'io.netty:netty-all:5.0.0.Alpha2'
}

你可能感兴趣的:(2018-08-10 Netty:4.x)