public class org.apache.http.config.SocketConfig$Builder
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.http.config.SocketConfig$Builder
  super_class: java.lang.Object
{
  private int soTimeout;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private boolean soReuseAddress;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private int soLinger;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private boolean soKeepAlive;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean tcpNoDelay;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private int sndBufSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int rcvBufSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int backlogSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.http.config.SocketConfig$Builder this
         0: .line 233
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 234
            aload 0 /* this */
            iconst_m1
            putfield org.apache.http.config.SocketConfig$Builder.soLinger:I
         2: .line 235
            aload 0 /* this */
            iconst_1
            putfield org.apache.http.config.SocketConfig$Builder.tcpNoDelay:Z
         3: .line 236
            return
        end local 0 // org.apache.http.config.SocketConfig$Builder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/http/config/SocketConfig$Builder;

  public org.apache.http.config.SocketConfig$Builder setSoTimeout(int);
    descriptor: (I)Lorg/apache/http/config/SocketConfig$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.http.config.SocketConfig$Builder this
        start local 1 // int soTimeout
         0: .line 239
            aload 0 /* this */
            iload 1 /* soTimeout */
            putfield org.apache.http.config.SocketConfig$Builder.soTimeout:I
         1: .line 240
            aload 0 /* this */
            areturn
        end local 1 // int soTimeout
        end local 0 // org.apache.http.config.SocketConfig$Builder this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/apache/http/config/SocketConfig$Builder;
            0    2     1  soTimeout  I
    MethodParameters:
           Name  Flags
      soTimeout  final

  public org.apache.http.config.SocketConfig$Builder setSoReuseAddress(boolean);
    descriptor: (Z)Lorg/apache/http/config/SocketConfig$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.http.config.SocketConfig$Builder this
        start local 1 // boolean soReuseAddress
         0: .line 244
            aload 0 /* this */
            iload 1 /* soReuseAddress */
            putfield org.apache.http.config.SocketConfig$Builder.soReuseAddress:Z
         1: .line 245
            aload 0 /* this */
            areturn
        end local 1 // boolean soReuseAddress
        end local 0 // org.apache.http.config.SocketConfig$Builder this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lorg/apache/http/config/SocketConfig$Builder;
            0    2     1  soReuseAddress  Z
    MethodParameters:
                Name  Flags
      soReuseAddress  final

  public org.apache.http.config.SocketConfig$Builder setSoLinger(int);
    descriptor: (I)Lorg/apache/http/config/SocketConfig$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.http.config.SocketConfig$Builder this
        start local 1 // int soLinger
         0: .line 249
            aload 0 /* this */
            iload 1 /* soLinger */
            putfield org.apache.http.config.SocketConfig$Builder.soLinger:I
         1: .line 250
            aload 0 /* this */
            areturn
        end local 1 // int soLinger
        end local 0 // org.apache.http.config.SocketConfig$Builder this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/apache/http/config/SocketConfig$Builder;
            0    2     1  soLinger  I
    MethodParameters:
          Name  Flags
      soLinger  final

  public org.apache.http.config.SocketConfig$Builder setSoKeepAlive(boolean);
    descriptor: (Z)Lorg/apache/http/config/SocketConfig$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.http.config.SocketConfig$Builder this
        start local 1 // boolean soKeepAlive
         0: .line 254
            aload 0 /* this */
            iload 1 /* soKeepAlive */
            putfield org.apache.http.config.SocketConfig$Builder.soKeepAlive:Z
         1: .line 255
            aload 0 /* this */
            areturn
        end local 1 // boolean soKeepAlive
        end local 0 // org.apache.http.config.SocketConfig$Builder this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/apache/http/config/SocketConfig$Builder;
            0    2     1  soKeepAlive  Z
    MethodParameters:
             Name  Flags
      soKeepAlive  final

  public org.apache.http.config.SocketConfig$Builder setTcpNoDelay(boolean);
    descriptor: (Z)Lorg/apache/http/config/SocketConfig$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.http.config.SocketConfig$Builder this
        start local 1 // boolean tcpNoDelay
         0: .line 259
            aload 0 /* this */
            iload 1 /* tcpNoDelay */
            putfield org.apache.http.config.SocketConfig$Builder.tcpNoDelay:Z
         1: .line 260
            aload 0 /* this */
            areturn
        end local 1 // boolean tcpNoDelay
        end local 0 // org.apache.http.config.SocketConfig$Builder this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/apache/http/config/SocketConfig$Builder;
            0    2     1  tcpNoDelay  Z
    MethodParameters:
            Name  Flags
      tcpNoDelay  final

  public org.apache.http.config.SocketConfig$Builder setSndBufSize(int);
    descriptor: (I)Lorg/apache/http/config/SocketConfig$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.http.config.SocketConfig$Builder this
        start local 1 // int sndBufSize
         0: .line 267
            aload 0 /* this */
            iload 1 /* sndBufSize */
            putfield org.apache.http.config.SocketConfig$Builder.sndBufSize:I
         1: .line 268
            aload 0 /* this */
            areturn
        end local 1 // int sndBufSize
        end local 0 // org.apache.http.config.SocketConfig$Builder this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/apache/http/config/SocketConfig$Builder;
            0    2     1  sndBufSize  I
    MethodParameters:
            Name  Flags
      sndBufSize  final

  public org.apache.http.config.SocketConfig$Builder setRcvBufSize(int);
    descriptor: (I)Lorg/apache/http/config/SocketConfig$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.http.config.SocketConfig$Builder this
        start local 1 // int rcvBufSize
         0: .line 275
            aload 0 /* this */
            iload 1 /* rcvBufSize */
            putfield org.apache.http.config.SocketConfig$Builder.rcvBufSize:I
         1: .line 276
            aload 0 /* this */
            areturn
        end local 1 // int rcvBufSize
        end local 0 // org.apache.http.config.SocketConfig$Builder this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/apache/http/config/SocketConfig$Builder;
            0    2     1  rcvBufSize  I
    MethodParameters:
            Name  Flags
      rcvBufSize  final

  public org.apache.http.config.SocketConfig$Builder setBacklogSize(int);
    descriptor: (I)Lorg/apache/http/config/SocketConfig$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.http.config.SocketConfig$Builder this
        start local 1 // int backlogSize
         0: .line 283
            aload 0 /* this */
            iload 1 /* backlogSize */
            putfield org.apache.http.config.SocketConfig$Builder.backlogSize:I
         1: .line 284
            aload 0 /* this */
            areturn
        end local 1 // int backlogSize
        end local 0 // org.apache.http.config.SocketConfig$Builder this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/apache/http/config/SocketConfig$Builder;
            0    2     1  backlogSize  I
    MethodParameters:
             Name  Flags
      backlogSize  final

  public org.apache.http.config.SocketConfig build();
    descriptor: ()Lorg/apache/http/config/SocketConfig;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=10, locals=1, args_size=1
        start local 0 // org.apache.http.config.SocketConfig$Builder this
         0: .line 288
            new org.apache.http.config.SocketConfig
            dup
            aload 0 /* this */
            getfield org.apache.http.config.SocketConfig$Builder.soTimeout:I
            aload 0 /* this */
            getfield org.apache.http.config.SocketConfig$Builder.soReuseAddress:Z
            aload 0 /* this */
            getfield org.apache.http.config.SocketConfig$Builder.soLinger:I
            aload 0 /* this */
            getfield org.apache.http.config.SocketConfig$Builder.soKeepAlive:Z
            aload 0 /* this */
            getfield org.apache.http.config.SocketConfig$Builder.tcpNoDelay:Z
         1: .line 289
            aload 0 /* this */
            getfield org.apache.http.config.SocketConfig$Builder.sndBufSize:I
            aload 0 /* this */
            getfield org.apache.http.config.SocketConfig$Builder.rcvBufSize:I
            aload 0 /* this */
            getfield org.apache.http.config.SocketConfig$Builder.backlogSize:I
         2: .line 288
            invokespecial org.apache.http.config.SocketConfig.<init>:(IZIZZIII)V
            areturn
        end local 0 // org.apache.http.config.SocketConfig$Builder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/http/config/SocketConfig$Builder;
}
SourceFile: "SocketConfig.java"
NestHost: org.apache.http.config.SocketConfig
InnerClasses:
  public Builder = org.apache.http.config.SocketConfig$Builder of org.apache.http.config.SocketConfig