当前位置:   article > 正文

Netty入门学习笔记2-核心组件Channel_channel.closefuture().sync()

channel.closefuture().sync()

一、定义

把 channel 理解为数据的通道。

二、channel 的主要作用

  • close() 可以用来关闭 channel

  • closeFuture() 用来处理 channel 的关闭

    • sync 方法作用是同步等待 channel 关闭

    • 而 addListener 方法是异步等待 channel 关闭

  • pipeline() 方法添加处理器

  • write() 方法将数据写入

  • writeAndFlush() 方法将数据写入并刷出

演示客户端的代码:

  1. public static void main(String[] args) throws InterruptedException, IOException {
  2. ChannelFuture channelFuture = new Bootstrap()
  3. .group(new NioEventLoopGroup())
  4. .channel(NioSocketChannel.class)
  5. .handler(new ChannelInitializer<Channel>() {
  6. @Override
  7. protected void initChannel(Channel channel) throws Exception {
  8. channel.pipeline().addLast(new StringEncoder());
  9. }
  10. })
  11. .connect("localhost", 8080);
  12. Channel channel = channelFuture
  13. .sync() //sync 方法是同步等待连接建立完成
  14. .channel();
  15. channel.writeAndFlush("hello my netty3");
  16. }

Channel向服务器端发送数据,除了使用sync同步方式,还可以使用 异步回调方法:

  1. package netty.channeltest;
  2. import io.netty.bootstrap.Bootstrap;
  3. import io.netty.channel.Channel;
  4. import io.netty.channel.ChannelFuture;
  5. import io.netty.channel.ChannelFutureListener;
  6. import io.netty.channel.ChannelInitializer;
  7. import io.netty.channel.nio.NioEventLoopGroup;
  8. import io.netty.channel.socket.nio.NioSocketChannel;
  9. import io.netty.handler.codec.string.StringEncoder;
  10. import java.io.IOException;
  11. public class NettyClientTest {
  12. public static void main(String[] args) throws InterruptedException, IOException {
  13. ChannelFuture channelFuture = new Bootstrap()
  14. .group(new NioEventLoopGroup())
  15. .channel(NioSocketChannel.class)
  16. .handler(new ChannelInitializer<Channel>() {
  17. @Override
  18. protected void initChannel(Channel channel) throws Exception {
  19. channel.pipeline().addLast(new StringEncoder());
  20. }
  21. })
  22. .connect("localhost", 8080);
  23. //1、同步等待方法
  24. // Channel channel = channelFuture
  25. // .sync() //sync 方法是同步等待连接建立完成
  26. // .channel();
  27. // channel.writeAndFlush("hello my netty3");
  28. //2异步回调方式
  29. channelFuture.addListener(new ChannelFutureListener(){
  30. @Override
  31. public void operationComplete(ChannelFuture cf) throws Exception {
  32. channelFuture.channel().writeAndFlush("hello my netty4");
  33. }
  34. });
  35. }
  36. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/152647
推荐阅读
  

闽ICP备14008679号