public abstract class io.netty.example.udt.echo.rendezvous.MsgEchoPeerBase
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: io.netty.example.udt.echo.rendezvous.MsgEchoPeerBase
  super_class: java.lang.Object
{
  protected final int messageSize;
    descriptor: I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final java.net.InetSocketAddress self;
    descriptor: Ljava/net/InetSocketAddress;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final java.net.InetSocketAddress peer;
    descriptor: Ljava/net/InetSocketAddress;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected void <init>(java.net.InetSocketAddress, java.net.InetSocketAddress, int);
    descriptor: (Ljava/net/InetSocketAddress;Ljava/net/InetSocketAddress;I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // io.netty.example.udt.echo.rendezvous.MsgEchoPeerBase this
        start local 1 // java.net.InetSocketAddress self
        start local 2 // java.net.InetSocketAddress peer
        start local 3 // int messageSize
         0: .line 43
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 44
            aload 0 /* this */
            iload 3 /* messageSize */
            putfield io.netty.example.udt.echo.rendezvous.MsgEchoPeerBase.messageSize:I
         2: .line 45
            aload 0 /* this */
            aload 1 /* self */
            putfield io.netty.example.udt.echo.rendezvous.MsgEchoPeerBase.self:Ljava/net/InetSocketAddress;
         3: .line 46
            aload 0 /* this */
            aload 2 /* peer */
            putfield io.netty.example.udt.echo.rendezvous.MsgEchoPeerBase.peer:Ljava/net/InetSocketAddress;
         4: .line 47
            return
        end local 3 // int messageSize
        end local 2 // java.net.InetSocketAddress peer
        end local 1 // java.net.InetSocketAddress self
        end local 0 // io.netty.example.udt.echo.rendezvous.MsgEchoPeerBase this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lio/netty/example/udt/echo/rendezvous/MsgEchoPeerBase;
            0    5     1         self  Ljava/net/InetSocketAddress;
            0    5     2         peer  Ljava/net/InetSocketAddress;
            0    5     3  messageSize  I
    MethodParameters:
             Name  Flags
      self         final
      peer         final
      messageSize  final

  public void run();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=1
        start local 0 // io.netty.example.udt.echo.rendezvous.MsgEchoPeerBase this
         0: .line 51
            new io.netty.util.concurrent.DefaultThreadFactory
            dup
            ldc "rendezvous"
            invokespecial io.netty.util.concurrent.DefaultThreadFactory.<init>:(Ljava/lang/String;)V
            astore 1 /* connectFactory */
        start local 1 // java.util.concurrent.ThreadFactory connectFactory
         1: .line 52
            new io.netty.channel.nio.NioEventLoopGroup
            dup
            iconst_1
         2: .line 53
            aload 1 /* connectFactory */
            getstatic io.netty.channel.udt.nio.NioUdtProvider.MESSAGE_PROVIDER:Ljava/nio/channels/spi/SelectorProvider;
         3: .line 52
            invokespecial io.netty.channel.nio.NioEventLoopGroup.<init>:(ILjava/util/concurrent/ThreadFactory;Ljava/nio/channels/spi/SelectorProvider;)V
            astore 2 /* connectGroup */
        start local 2 // io.netty.channel.nio.NioEventLoopGroup connectGroup
         4: .line 55
            new io.netty.bootstrap.Bootstrap
            dup
            invokespecial io.netty.bootstrap.Bootstrap.<init>:()V
            astore 3 /* boot */
        start local 3 // io.netty.bootstrap.Bootstrap boot
         5: .line 56
            aload 3 /* boot */
            aload 2 /* connectGroup */
            invokevirtual io.netty.bootstrap.Bootstrap.group:(Lio/netty/channel/EventLoopGroup;)Lio/netty/bootstrap/AbstractBootstrap;
            checkcast io.netty.bootstrap.Bootstrap
         6: .line 57
            getstatic io.netty.channel.udt.nio.NioUdtProvider.MESSAGE_RENDEZVOUS:Lio/netty/channel/ChannelFactory;
            invokevirtual io.netty.bootstrap.Bootstrap.channelFactory:(Lio/netty/channel/ChannelFactory;)Lio/netty/bootstrap/AbstractBootstrap;
            checkcast io.netty.bootstrap.Bootstrap
         7: .line 58
            new io.netty.example.udt.echo.rendezvous.MsgEchoPeerBase$1
            dup
            aload 0 /* this */
            invokespecial io.netty.example.udt.echo.rendezvous.MsgEchoPeerBase$1.<init>:(Lio/netty/example/udt/echo/rendezvous/MsgEchoPeerBase;)V
            invokevirtual io.netty.bootstrap.Bootstrap.handler:(Lio/netty/channel/ChannelHandler;)Lio/netty/bootstrap/AbstractBootstrap;
            pop
         8: .line 68
            aload 3 /* boot */
            aload 0 /* this */
            getfield io.netty.example.udt.echo.rendezvous.MsgEchoPeerBase.peer:Ljava/net/InetSocketAddress;
            aload 0 /* this */
            getfield io.netty.example.udt.echo.rendezvous.MsgEchoPeerBase.self:Ljava/net/InetSocketAddress;
            invokevirtual io.netty.bootstrap.Bootstrap.connect:(Ljava/net/SocketAddress;Ljava/net/SocketAddress;)Lio/netty/channel/ChannelFuture;
            invokeinterface io.netty.channel.ChannelFuture.sync:()Lio/netty/channel/ChannelFuture;
            astore 4 /* f */
        start local 4 // io.netty.channel.ChannelFuture f
         9: .line 70
            aload 4 /* f */
            invokeinterface io.netty.channel.ChannelFuture.channel:()Lio/netty/channel/Channel;
            invokeinterface io.netty.channel.Channel.closeFuture:()Lio/netty/channel/ChannelFuture;
            invokeinterface io.netty.channel.ChannelFuture.sync:()Lio/netty/channel/ChannelFuture;
            pop
        end local 4 // io.netty.channel.ChannelFuture f
        end local 3 // io.netty.bootstrap.Bootstrap boot
        10: .line 71
            goto 14
      StackMap locals: io.netty.example.udt.echo.rendezvous.MsgEchoPeerBase java.util.concurrent.ThreadFactory io.netty.channel.nio.NioEventLoopGroup
      StackMap stack: java.lang.Throwable
        11: astore 5
        12: .line 73
            aload 2 /* connectGroup */
            invokevirtual io.netty.channel.nio.NioEventLoopGroup.shutdownGracefully:()Lio/netty/util/concurrent/Future;
            pop
        13: .line 74
            aload 5
            athrow
        14: .line 73
      StackMap locals:
      StackMap stack:
            aload 2 /* connectGroup */
            invokevirtual io.netty.channel.nio.NioEventLoopGroup.shutdownGracefully:()Lio/netty/util/concurrent/Future;
            pop
        15: .line 75
            return
        end local 2 // io.netty.channel.nio.NioEventLoopGroup connectGroup
        end local 1 // java.util.concurrent.ThreadFactory connectFactory
        end local 0 // io.netty.example.udt.echo.rendezvous.MsgEchoPeerBase this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   16     0            this  Lio/netty/example/udt/echo/rendezvous/MsgEchoPeerBase;
            1   16     1  connectFactory  Ljava/util/concurrent/ThreadFactory;
            4   16     2    connectGroup  Lio/netty/channel/nio/NioEventLoopGroup;
            5   10     3            boot  Lio/netty/bootstrap/Bootstrap;
            9   10     4               f  Lio/netty/channel/ChannelFuture;
      Exception table:
        from    to  target  type
           4    11      11  any
    Exceptions:
      throws java.lang.Exception
}
SourceFile: "MsgEchoPeerBase.java"
NestMembers:
  io.netty.example.udt.echo.rendezvous.MsgEchoPeerBase$1
InnerClasses:
  io.netty.example.udt.echo.rendezvous.MsgEchoPeerBase$1