public final class io.netty.example.rxtx.RxtxClient
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.netty.example.rxtx.RxtxClient
  super_class: java.lang.Object
{
  static final java.lang.String PORT;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 34
            ldc "port"
            ldc "/dev/ttyUSB0"
            invokestatic java.lang.System.getProperty:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            putstatic io.netty.example.rxtx.RxtxClient.PORT:Ljava/lang/String;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.example.rxtx.RxtxClient this
         0: .line 32
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // io.netty.example.rxtx.RxtxClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/example/rxtx/RxtxClient;

  public static void main(java.lang.String[]);
    descriptor: ([Ljava/lang/String;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // java.lang.String[] args
         0: .line 37
            new io.netty.channel.oio.OioEventLoopGroup
            dup
            invokespecial io.netty.channel.oio.OioEventLoopGroup.<init>:()V
            astore 1 /* group */
        start local 1 // io.netty.channel.EventLoopGroup group
         1: .line 39
            new io.netty.bootstrap.Bootstrap
            dup
            invokespecial io.netty.bootstrap.Bootstrap.<init>:()V
            astore 2 /* b */
        start local 2 // io.netty.bootstrap.Bootstrap b
         2: .line 40
            aload 2 /* b */
            aload 1 /* group */
            invokevirtual io.netty.bootstrap.Bootstrap.group:(Lio/netty/channel/EventLoopGroup;)Lio/netty/bootstrap/AbstractBootstrap;
            checkcast io.netty.bootstrap.Bootstrap
         3: .line 41
            ldc Lio/netty/channel/rxtx/RxtxChannel;
            invokevirtual io.netty.bootstrap.Bootstrap.channel:(Ljava/lang/Class;)Lio/netty/bootstrap/AbstractBootstrap;
            checkcast io.netty.bootstrap.Bootstrap
         4: .line 42
            new io.netty.example.rxtx.RxtxClient$1
            dup
            invokespecial io.netty.example.rxtx.RxtxClient$1.<init>:()V
            invokevirtual io.netty.bootstrap.Bootstrap.handler:(Lio/netty/channel/ChannelHandler;)Lio/netty/bootstrap/AbstractBootstrap;
            pop
         5: .line 54
            aload 2 /* b */
            new io.netty.channel.rxtx.RxtxDeviceAddress
            dup
            getstatic io.netty.example.rxtx.RxtxClient.PORT:Ljava/lang/String;
            invokespecial io.netty.channel.rxtx.RxtxDeviceAddress.<init>:(Ljava/lang/String;)V
            invokevirtual io.netty.bootstrap.Bootstrap.connect:(Ljava/net/SocketAddress;)Lio/netty/channel/ChannelFuture;
            invokeinterface io.netty.channel.ChannelFuture.sync:()Lio/netty/channel/ChannelFuture;
            astore 3 /* f */
        start local 3 // io.netty.channel.ChannelFuture f
         6: .line 56
            aload 3 /* 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 3 // io.netty.channel.ChannelFuture f
        end local 2 // io.netty.bootstrap.Bootstrap b
         7: .line 57
            goto 11
      StackMap locals: java.lang.String[] io.netty.channel.EventLoopGroup
      StackMap stack: java.lang.Throwable
         8: astore 4
         9: .line 58
            aload 1 /* group */
            invokeinterface io.netty.channel.EventLoopGroup.shutdownGracefully:()Lio/netty/util/concurrent/Future;
            pop
        10: .line 59
            aload 4
            athrow
        11: .line 58
      StackMap locals:
      StackMap stack:
            aload 1 /* group */
            invokeinterface io.netty.channel.EventLoopGroup.shutdownGracefully:()Lio/netty/util/concurrent/Future;
            pop
        12: .line 60
            return
        end local 1 // io.netty.channel.EventLoopGroup group
        end local 0 // java.lang.String[] args
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   13     0   args  [Ljava/lang/String;
            1   13     1  group  Lio/netty/channel/EventLoopGroup;
            2    7     2      b  Lio/netty/bootstrap/Bootstrap;
            6    7     3      f  Lio/netty/channel/ChannelFuture;
      Exception table:
        from    to  target  type
           1     8       8  any
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
      Name  Flags
      args  
}
SourceFile: "RxtxClient.java"
NestMembers:
  io.netty.example.rxtx.RxtxClient$1
InnerClasses:
  io.netty.example.rxtx.RxtxClient$1