public class ch.qos.logback.core.net.DefaultSocketConnector implements ch.qos.logback.core.net.SocketConnector
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: ch.qos.logback.core.net.DefaultSocketConnector
  super_class: java.lang.Object
{
  private final java.net.InetAddress address;
    descriptor: Ljava/net/InetAddress;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int port;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final ch.qos.logback.core.util.DelayStrategy delayStrategy;
    descriptor: Lch/qos/logback/core/util/DelayStrategy;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private ch.qos.logback.core.net.SocketConnector$ExceptionHandler exceptionHandler;
    descriptor: Lch/qos/logback/core/net/SocketConnector$ExceptionHandler;
    flags: (0x0002) ACC_PRIVATE

  private javax.net.SocketFactory socketFactory;
    descriptor: Ljavax/net/SocketFactory;
    flags: (0x0002) ACC_PRIVATE

  public void <init>(java.net.InetAddress, int, long, long);
    descriptor: (Ljava/net/InetAddress;IJJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=7, args_size=5
        start local 0 // ch.qos.logback.core.net.DefaultSocketConnector this
        start local 1 // java.net.InetAddress address
        start local 2 // int port
        start local 3 // long initialDelay
        start local 5 // long retryDelay
         0: .line 49
            aload 0 /* this */
            aload 1 /* address */
            iload 2 /* port */
            new ch.qos.logback.core.util.FixedDelay
            dup
            lload 3 /* initialDelay */
            lload 5 /* retryDelay */
            invokespecial ch.qos.logback.core.util.FixedDelay.<init>:(JJ)V
            invokespecial ch.qos.logback.core.net.DefaultSocketConnector.<init>:(Ljava/net/InetAddress;ILch/qos/logback/core/util/DelayStrategy;)V
         1: .line 50
            return
        end local 5 // long retryDelay
        end local 3 // long initialDelay
        end local 2 // int port
        end local 1 // java.net.InetAddress address
        end local 0 // ch.qos.logback.core.net.DefaultSocketConnector this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lch/qos/logback/core/net/DefaultSocketConnector;
            0    2     1       address  Ljava/net/InetAddress;
            0    2     2          port  I
            0    2     3  initialDelay  J
            0    2     5    retryDelay  J
    MethodParameters:
              Name  Flags
      address       
      port          
      initialDelay  
      retryDelay    

  public void <init>(java.net.InetAddress, int, ch.qos.logback.core.util.DelayStrategy);
    descriptor: (Ljava/net/InetAddress;ILch/qos/logback/core/util/DelayStrategy;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // ch.qos.logback.core.net.DefaultSocketConnector this
        start local 1 // java.net.InetAddress address
        start local 2 // int port
        start local 3 // ch.qos.logback.core.util.DelayStrategy delayStrategy
         0: .line 60
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 61
            aload 0 /* this */
            aload 1 /* address */
            putfield ch.qos.logback.core.net.DefaultSocketConnector.address:Ljava/net/InetAddress;
         2: .line 62
            aload 0 /* this */
            iload 2 /* port */
            putfield ch.qos.logback.core.net.DefaultSocketConnector.port:I
         3: .line 63
            aload 0 /* this */
            aload 3 /* delayStrategy */
            putfield ch.qos.logback.core.net.DefaultSocketConnector.delayStrategy:Lch/qos/logback/core/util/DelayStrategy;
         4: .line 64
            return
        end local 3 // ch.qos.logback.core.util.DelayStrategy delayStrategy
        end local 2 // int port
        end local 1 // java.net.InetAddress address
        end local 0 // ch.qos.logback.core.net.DefaultSocketConnector this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lch/qos/logback/core/net/DefaultSocketConnector;
            0    5     1        address  Ljava/net/InetAddress;
            0    5     2           port  I
            0    5     3  delayStrategy  Lch/qos/logback/core/util/DelayStrategy;
    MethodParameters:
               Name  Flags
      address        
      port           
      delayStrategy  

  public java.net.Socket call();
    descriptor: ()Ljava/net/Socket;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // ch.qos.logback.core.net.DefaultSocketConnector this
         0: .line 70
            aload 0 /* this */
            invokevirtual ch.qos.logback.core.net.DefaultSocketConnector.useDefaultsForMissingFields:()V
         1: .line 71
            aload 0 /* this */
            invokevirtual ch.qos.logback.core.net.DefaultSocketConnector.createSocket:()Ljava/net/Socket;
            astore 1 /* socket */
        start local 1 // java.net.Socket socket
         2: .line 72
            goto 5
         3: .line 73
      StackMap locals: java.net.Socket
      StackMap stack:
            aload 0 /* this */
            getfield ch.qos.logback.core.net.DefaultSocketConnector.delayStrategy:Lch/qos/logback/core/util/DelayStrategy;
            invokeinterface ch.qos.logback.core.util.DelayStrategy.nextDelay:()J
            invokestatic java.lang.Thread.sleep:(J)V
         4: .line 74
            aload 0 /* this */
            invokevirtual ch.qos.logback.core.net.DefaultSocketConnector.createSocket:()Ljava/net/Socket;
            astore 1 /* socket */
         5: .line 72
      StackMap locals:
      StackMap stack:
            aload 1 /* socket */
            ifnonnull 6
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.isInterrupted:()Z
            ifeq 3
         6: .line 76
      StackMap locals:
      StackMap stack:
            aload 1 /* socket */
            areturn
        end local 1 // java.net.Socket socket
        end local 0 // ch.qos.logback.core.net.DefaultSocketConnector this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lch/qos/logback/core/net/DefaultSocketConnector;
            2    7     1  socket  Ljava/net/Socket;
    Exceptions:
      throws java.lang.InterruptedException

  private java.net.Socket createSocket();
    descriptor: ()Ljava/net/Socket;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // ch.qos.logback.core.net.DefaultSocketConnector this
         0: .line 80
            aconst_null
            astore 1 /* newSocket */
        start local 1 // java.net.Socket newSocket
         1: .line 82
            aload 0 /* this */
            getfield ch.qos.logback.core.net.DefaultSocketConnector.socketFactory:Ljavax/net/SocketFactory;
            aload 0 /* this */
            getfield ch.qos.logback.core.net.DefaultSocketConnector.address:Ljava/net/InetAddress;
            aload 0 /* this */
            getfield ch.qos.logback.core.net.DefaultSocketConnector.port:I
            invokevirtual javax.net.SocketFactory.createSocket:(Ljava/net/InetAddress;I)Ljava/net/Socket;
            astore 1 /* newSocket */
         2: .line 83
            goto 5
      StackMap locals: ch.qos.logback.core.net.DefaultSocketConnector java.net.Socket
      StackMap stack: java.io.IOException
         3: astore 2 /* ioex */
        start local 2 // java.io.IOException ioex
         4: .line 84
            aload 0 /* this */
            getfield ch.qos.logback.core.net.DefaultSocketConnector.exceptionHandler:Lch/qos/logback/core/net/SocketConnector$ExceptionHandler;
            aload 0 /* this */
            aload 2 /* ioex */
            invokeinterface ch.qos.logback.core.net.SocketConnector$ExceptionHandler.connectionFailed:(Lch/qos/logback/core/net/SocketConnector;Ljava/lang/Exception;)V
        end local 2 // java.io.IOException ioex
         5: .line 86
      StackMap locals:
      StackMap stack:
            aload 1 /* newSocket */
            areturn
        end local 1 // java.net.Socket newSocket
        end local 0 // ch.qos.logback.core.net.DefaultSocketConnector this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lch/qos/logback/core/net/DefaultSocketConnector;
            1    6     1  newSocket  Ljava/net/Socket;
            4    5     2       ioex  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.io.IOException

  private void useDefaultsForMissingFields();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // ch.qos.logback.core.net.DefaultSocketConnector this
         0: .line 90
            aload 0 /* this */
            getfield ch.qos.logback.core.net.DefaultSocketConnector.exceptionHandler:Lch/qos/logback/core/net/SocketConnector$ExceptionHandler;
            ifnonnull 2
         1: .line 91
            aload 0 /* this */
            new ch.qos.logback.core.net.DefaultSocketConnector$ConsoleExceptionHandler
            dup
            invokespecial ch.qos.logback.core.net.DefaultSocketConnector$ConsoleExceptionHandler.<init>:()V
            putfield ch.qos.logback.core.net.DefaultSocketConnector.exceptionHandler:Lch/qos/logback/core/net/SocketConnector$ExceptionHandler;
         2: .line 93
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield ch.qos.logback.core.net.DefaultSocketConnector.socketFactory:Ljavax/net/SocketFactory;
            ifnonnull 4
         3: .line 94
            aload 0 /* this */
            invokestatic javax.net.SocketFactory.getDefault:()Ljavax/net/SocketFactory;
            putfield ch.qos.logback.core.net.DefaultSocketConnector.socketFactory:Ljavax/net/SocketFactory;
         4: .line 96
      StackMap locals:
      StackMap stack:
            return
        end local 0 // ch.qos.logback.core.net.DefaultSocketConnector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lch/qos/logback/core/net/DefaultSocketConnector;

  public void setExceptionHandler(ch.qos.logback.core.net.SocketConnector$ExceptionHandler);
    descriptor: (Lch/qos/logback/core/net/SocketConnector$ExceptionHandler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // ch.qos.logback.core.net.DefaultSocketConnector this
        start local 1 // ch.qos.logback.core.net.SocketConnector$ExceptionHandler exceptionHandler
         0: .line 102
            aload 0 /* this */
            aload 1 /* exceptionHandler */
            putfield ch.qos.logback.core.net.DefaultSocketConnector.exceptionHandler:Lch/qos/logback/core/net/SocketConnector$ExceptionHandler;
         1: .line 103
            return
        end local 1 // ch.qos.logback.core.net.SocketConnector$ExceptionHandler exceptionHandler
        end local 0 // ch.qos.logback.core.net.DefaultSocketConnector this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lch/qos/logback/core/net/DefaultSocketConnector;
            0    2     1  exceptionHandler  Lch/qos/logback/core/net/SocketConnector$ExceptionHandler;
    MethodParameters:
                  Name  Flags
      exceptionHandler  

  public void setSocketFactory(javax.net.SocketFactory);
    descriptor: (Ljavax/net/SocketFactory;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // ch.qos.logback.core.net.DefaultSocketConnector this
        start local 1 // javax.net.SocketFactory socketFactory
         0: .line 109
            aload 0 /* this */
            aload 1 /* socketFactory */
            putfield ch.qos.logback.core.net.DefaultSocketConnector.socketFactory:Ljavax/net/SocketFactory;
         1: .line 110
            return
        end local 1 // javax.net.SocketFactory socketFactory
        end local 0 // ch.qos.logback.core.net.DefaultSocketConnector this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lch/qos/logback/core/net/DefaultSocketConnector;
            0    2     1  socketFactory  Ljavax/net/SocketFactory;
    MethodParameters:
               Name  Flags
      socketFactory  

  public java.lang.Object call();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual ch.qos.logback.core.net.DefaultSocketConnector.call:()Ljava/net/Socket;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.Exception
}
SourceFile: "DefaultSocketConnector.java"
NestMembers:
  ch.qos.logback.core.net.DefaultSocketConnector$ConsoleExceptionHandler
InnerClasses:
  private ConsoleExceptionHandler = ch.qos.logback.core.net.DefaultSocketConnector$ConsoleExceptionHandler of ch.qos.logback.core.net.DefaultSocketConnector
  public abstract ExceptionHandler = ch.qos.logback.core.net.SocketConnector$ExceptionHandler of ch.qos.logback.core.net.SocketConnector