预览加载中,请您耐心等待几秒...
1/10
2/10
3/10
4/10
5/10
6/10
7/10
8/10
9/10
10/10
亲,该文档总共15页,到这已经超出免费预览范围,如果喜欢就直接下载吧~
如果您无法下载资料,请参考说明:
1、部分资料下载需要金币,请确保您的账户上有足够的金币
2、已购买过的文档,再次下载不重复扣费
3、资料包下载后请先用软件解压,在使用对应软件打开
org.jboss.netty.bootstrapBootstrap:ChannelFactory,ChannelPipeline,ChannelPipelineFactory初始化channel的辅助类为具体的子类提供公共数据结构ServerBootstrap:bind()创建服务器端channel的辅助类接收connection请求ClientBootstrap:connect()创建客户端channel的辅助类发起connection请求ConnectionlessBootstrap:connect(),bind()创建无连接传输channel的辅助类(UDP)包括Client和Serverorg.jboss.netty.buffer取代nio中的java.nio.ByteBuffer,相比ByteBuffer可以根据需要自定义buffertype内置混合的buffertype,以实现zero-copy提供类似StringBuffer的动态dynamicbuffer不需要调用flip方法更快的性能推荐使用ChannelBuffers的静态工厂创建ChannelBufferorg.jboss.netty.channelchannel核心api,包括异步和事件驱动等各种传送接口org.jboss.netty.channel.groupchannelgroup,帮助用户维护channel列表org.jboss.netty.channel.local一种虚拟传输方式,允许同一个虚拟机上的两个部分可以互相通信org.jboss.netty.channel.socketTCP,UDP接口,继承了核心的channelAPIorg.jboss.netty.channel.socket.nio基于nio的Socketchannel实现org.jboss.netty.channel.socket.oio基于老io的Socketchannel实现org.jboss.netty.channel.socket.http基于http的客户端和相应的server端的实现,工作在有防火墙的情况Org.jboss.netty.container各种容器的兼容Org.jboss.netty.container.microcontainerJBossMicrocontainer集成接口Org.jboss.netty.container.osgiOSGiframework集成接口Org.jboss.netty.container.springSpringframework集成接口org.jboss.netty.handler处理器org.jboss.netty.handler.codec编码解码器org.jboss.netty.handler.execution基于Executor的实现org.jboss.netty.handler.queue将event存入内部队列的处理org.jboss.netty.handler.ssl基于SSLEngine的SSL以及TLS实现org.jboss.netty.handler.stream异步写入大数据,不会产生outOfMemory也不会花费很多内存org.jboss.netty.handler.timeout通过Timer来对读写超时或者闲置链接进行通知org.jboss.netty.handler.codec.base64Base64编码Org.jboss.netty.handler.codec.compression压缩格式Org.jboss.netty.handler.codec.embedder嵌入模式下编码和解码Org.jboss.netty.handler.codec.frame评估流的数据的排列和内容Org.jboss.netty.handler.codec.http.websocketwebsocket编码解码Org.jboss.netty.handler.codec.httphttp的编码解码以及类型信息Org.jboss.netty.handler.codec.oneone对象到对象编码解码Org.jboss.netty.handler.codec.protobufProtocolBuffers的编码解码Org.jboss.netty.handler.codec.replay在阻塞io中实现非阻塞解码Org.jboss.netty.handler.codec.rtspRTSP的编码解码Org.jboss.netty.handler.codec.