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

  static final int PORT;
    descriptor: I
    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 54
            ldc "host"
            ldc "127.0.0.1"
            invokestatic java.lang.System.getProperty:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            putstatic io.netty.example.spdy.client.SpdyClient.HOST:Ljava/lang/String;
         1: .line 55
            ldc "port"
            ldc "8443"
            invokestatic java.lang.System.getProperty:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            invokestatic java.lang.Integer.parseInt:(Ljava/lang/String;)I
            putstatic io.netty.example.spdy.client.SpdyClient.PORT:I
            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.spdy.client.SpdyClient this
         0: .line 52
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // io.netty.example.spdy.client.SpdyClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/example/spdy/client/SpdyClient;

  public static void main(java.lang.String[]);
    descriptor: ([Ljava/lang/String;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=10, locals=8, args_size=1
        start local 0 // java.lang.String[] args
         0: .line 59
            invokestatic io.netty.handler.ssl.SslContextBuilder.forClient:()Lio/netty/handler/ssl/SslContextBuilder;
         1: .line 60
            getstatic io.netty.handler.ssl.util.InsecureTrustManagerFactory.INSTANCE:Ljavax/net/ssl/TrustManagerFactory;
            invokevirtual io.netty.handler.ssl.SslContextBuilder.trustManager:(Ljavax/net/ssl/TrustManagerFactory;)Lio/netty/handler/ssl/SslContextBuilder;
         2: .line 61
            new io.netty.handler.ssl.ApplicationProtocolConfig
            dup
         3: .line 62
            getstatic io.netty.handler.ssl.ApplicationProtocolConfig$Protocol.NPN:Lio/netty/handler/ssl/ApplicationProtocolConfig$Protocol;
         4: .line 64
            getstatic io.netty.handler.ssl.ApplicationProtocolConfig$SelectorFailureBehavior.NO_ADVERTISE:Lio/netty/handler/ssl/ApplicationProtocolConfig$SelectorFailureBehavior;
         5: .line 66
            getstatic io.netty.handler.ssl.ApplicationProtocolConfig$SelectedListenerFailureBehavior.ACCEPT:Lio/netty/handler/ssl/ApplicationProtocolConfig$SelectedListenerFailureBehavior;
            iconst_2
            anewarray java.lang.String
            dup
            iconst_0
         6: .line 67
            ldc "spdy/3.1"
            aastore
            dup
            iconst_1
         7: .line 68
            ldc "http/1.1"
         8: .line 61
            aastore
            invokespecial io.netty.handler.ssl.ApplicationProtocolConfig.<init>:(Lio/netty/handler/ssl/ApplicationProtocolConfig$Protocol;Lio/netty/handler/ssl/ApplicationProtocolConfig$SelectorFailureBehavior;Lio/netty/handler/ssl/ApplicationProtocolConfig$SelectedListenerFailureBehavior;[Ljava/lang/String;)V
            invokevirtual io.netty.handler.ssl.SslContextBuilder.applicationProtocolConfig:(Lio/netty/handler/ssl/ApplicationProtocolConfig;)Lio/netty/handler/ssl/SslContextBuilder;
         9: .line 69
            invokevirtual io.netty.handler.ssl.SslContextBuilder.build:()Lio/netty/handler/ssl/SslContext;
        10: .line 59
            astore 1 /* sslCtx */
        start local 1 // io.netty.handler.ssl.SslContext sslCtx
        11: .line 71
            new io.netty.example.spdy.client.HttpResponseClientHandler
            dup
            invokespecial io.netty.example.spdy.client.HttpResponseClientHandler.<init>:()V
            astore 2 /* httpResponseHandler */
        start local 2 // io.netty.example.spdy.client.HttpResponseClientHandler httpResponseHandler
        12: .line 72
            new io.netty.channel.nio.NioEventLoopGroup
            dup
            invokespecial io.netty.channel.nio.NioEventLoopGroup.<init>:()V
            astore 3 /* workerGroup */
        start local 3 // io.netty.channel.EventLoopGroup workerGroup
        13: .line 75
            new io.netty.bootstrap.Bootstrap
            dup
            invokespecial io.netty.bootstrap.Bootstrap.<init>:()V
            astore 4 /* b */
        start local 4 // io.netty.bootstrap.Bootstrap b
        14: .line 76
            aload 4 /* b */
            aload 3 /* workerGroup */
            invokevirtual io.netty.bootstrap.Bootstrap.group:(Lio/netty/channel/EventLoopGroup;)Lio/netty/bootstrap/AbstractBootstrap;
            pop
        15: .line 77
            aload 4 /* b */
            ldc Lio/netty/channel/socket/nio/NioSocketChannel;
            invokevirtual io.netty.bootstrap.Bootstrap.channel:(Ljava/lang/Class;)Lio/netty/bootstrap/AbstractBootstrap;
            pop
        16: .line 78
            aload 4 /* b */
            getstatic io.netty.channel.ChannelOption.SO_KEEPALIVE:Lio/netty/channel/ChannelOption;
            iconst_1
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual io.netty.bootstrap.Bootstrap.option:(Lio/netty/channel/ChannelOption;Ljava/lang/Object;)Lio/netty/bootstrap/AbstractBootstrap;
            pop
        17: .line 79
            aload 4 /* b */
            getstatic io.netty.example.spdy.client.SpdyClient.HOST:Ljava/lang/String;
            getstatic io.netty.example.spdy.client.SpdyClient.PORT:I
            invokevirtual io.netty.bootstrap.Bootstrap.remoteAddress:(Ljava/lang/String;I)Lio/netty/bootstrap/Bootstrap;
            pop
        18: .line 80
            aload 4 /* b */
            new io.netty.example.spdy.client.SpdyClientInitializer
            dup
            aload 1 /* sslCtx */
            aload 2 /* httpResponseHandler */
            invokespecial io.netty.example.spdy.client.SpdyClientInitializer.<init>:(Lio/netty/handler/ssl/SslContext;Lio/netty/example/spdy/client/HttpResponseClientHandler;)V
            invokevirtual io.netty.bootstrap.Bootstrap.handler:(Lio/netty/channel/ChannelHandler;)Lio/netty/bootstrap/AbstractBootstrap;
            pop
        19: .line 83
            aload 4 /* b */
            invokevirtual io.netty.bootstrap.Bootstrap.connect:()Lio/netty/channel/ChannelFuture;
            invokeinterface io.netty.channel.ChannelFuture.syncUninterruptibly:()Lio/netty/channel/ChannelFuture;
            invokeinterface io.netty.channel.ChannelFuture.channel:()Lio/netty/channel/Channel;
            astore 5 /* channel */
        start local 5 // io.netty.channel.Channel channel
        20: .line 84
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Connected to "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            getstatic io.netty.example.spdy.client.SpdyClient.HOST:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            bipush 58
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            getstatic io.netty.example.spdy.client.SpdyClient.PORT:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
        21: .line 87
            new io.netty.handler.codec.http.DefaultFullHttpRequest
            dup
            getstatic io.netty.handler.codec.http.HttpVersion.HTTP_1_1:Lio/netty/handler/codec/http/HttpVersion;
            getstatic io.netty.handler.codec.http.HttpMethod.GET:Lio/netty/handler/codec/http/HttpMethod;
            ldc ""
            invokespecial io.netty.handler.codec.http.DefaultFullHttpRequest.<init>:(Lio/netty/handler/codec/http/HttpVersion;Lio/netty/handler/codec/http/HttpMethod;Ljava/lang/String;)V
            astore 6 /* request */
        start local 6 // io.netty.handler.codec.http.HttpRequest request
        22: .line 88
            aload 6 /* request */
            invokeinterface io.netty.handler.codec.http.HttpRequest.headers:()Lio/netty/handler/codec/http/HttpHeaders;
            getstatic io.netty.handler.codec.http.HttpHeaderNames.HOST:Lio/netty/util/AsciiString;
            getstatic io.netty.example.spdy.client.SpdyClient.HOST:Ljava/lang/String;
            invokevirtual io.netty.handler.codec.http.HttpHeaders.set:(Ljava/lang/CharSequence;Ljava/lang/Object;)Lio/netty/handler/codec/http/HttpHeaders;
            pop
        23: .line 89
            aload 6 /* request */
            invokeinterface io.netty.handler.codec.http.HttpRequest.headers:()Lio/netty/handler/codec/http/HttpHeaders;
            getstatic io.netty.handler.codec.http.HttpHeaderNames.ACCEPT_ENCODING:Lio/netty/util/AsciiString;
            getstatic io.netty.handler.codec.http.HttpHeaderValues.GZIP:Lio/netty/util/AsciiString;
            invokevirtual io.netty.handler.codec.http.HttpHeaders.set:(Ljava/lang/CharSequence;Ljava/lang/Object;)Lio/netty/handler/codec/http/HttpHeaders;
            pop
        24: .line 92
            aload 5 /* channel */
            aload 6 /* request */
            invokeinterface io.netty.channel.Channel.writeAndFlush:(Ljava/lang/Object;)Lio/netty/channel/ChannelFuture;
            invokeinterface io.netty.channel.ChannelFuture.sync:()Lio/netty/channel/ChannelFuture;
            pop
        25: .line 95
            aload 2 /* httpResponseHandler */
            invokevirtual io.netty.example.spdy.client.HttpResponseClientHandler.queue:()Ljava/util/concurrent/BlockingQueue;
            invokeinterface java.util.concurrent.BlockingQueue.take:()Ljava/lang/Object;
            checkcast io.netty.channel.ChannelFuture
            invokeinterface io.netty.channel.ChannelFuture.sync:()Lio/netty/channel/ChannelFuture;
            pop
        26: .line 96
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            ldc "Finished SPDY HTTP GET"
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
        27: .line 99
            aload 5 /* channel */
            invokeinterface io.netty.channel.Channel.close:()Lio/netty/channel/ChannelFuture;
            invokeinterface io.netty.channel.ChannelFuture.syncUninterruptibly:()Lio/netty/channel/ChannelFuture;
            pop
        end local 6 // io.netty.handler.codec.http.HttpRequest request
        end local 5 // io.netty.channel.Channel channel
        end local 4 // io.netty.bootstrap.Bootstrap b
        28: .line 100
            goto 32
      StackMap locals: java.lang.String[] io.netty.handler.ssl.SslContext io.netty.example.spdy.client.HttpResponseClientHandler io.netty.channel.EventLoopGroup
      StackMap stack: java.lang.Throwable
        29: astore 7
        30: .line 101
            aload 3 /* workerGroup */
            invokeinterface io.netty.channel.EventLoopGroup.shutdownGracefully:()Lio/netty/util/concurrent/Future;
            pop
        31: .line 102
            aload 7
            athrow
        32: .line 101
      StackMap locals:
      StackMap stack:
            aload 3 /* workerGroup */
            invokeinterface io.netty.channel.EventLoopGroup.shutdownGracefully:()Lio/netty/util/concurrent/Future;
            pop
        33: .line 103
            return
        end local 3 // io.netty.channel.EventLoopGroup workerGroup
        end local 2 // io.netty.example.spdy.client.HttpResponseClientHandler httpResponseHandler
        end local 1 // io.netty.handler.ssl.SslContext sslCtx
        end local 0 // java.lang.String[] args
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   34     0                 args  [Ljava/lang/String;
           11   34     1               sslCtx  Lio/netty/handler/ssl/SslContext;
           12   34     2  httpResponseHandler  Lio/netty/example/spdy/client/HttpResponseClientHandler;
           13   34     3          workerGroup  Lio/netty/channel/EventLoopGroup;
           14   28     4                    b  Lio/netty/bootstrap/Bootstrap;
           20   28     5              channel  Lio/netty/channel/Channel;
           22   28     6              request  Lio/netty/handler/codec/http/HttpRequest;
      Exception table:
        from    to  target  type
          13    29      29  any
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
      Name  Flags
      args  
}
SourceFile: "SpdyClient.java"
InnerClasses:
  public final Protocol = io.netty.handler.ssl.ApplicationProtocolConfig$Protocol of io.netty.handler.ssl.ApplicationProtocolConfig
  public final SelectedListenerFailureBehavior = io.netty.handler.ssl.ApplicationProtocolConfig$SelectedListenerFailureBehavior of io.netty.handler.ssl.ApplicationProtocolConfig
  public final SelectorFailureBehavior = io.netty.handler.ssl.ApplicationProtocolConfig$SelectorFailureBehavior of io.netty.handler.ssl.ApplicationProtocolConfig