public class io.dropwizard.logging.TcpSocketAppenderFactory<E extends ch.qos.logback.core.spi.DeferredProcessingAware> extends io.dropwizard.logging.AbstractOutputStreamAppenderFactory<E>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.dropwizard.logging.TcpSocketAppenderFactory
  super_class: io.dropwizard.logging.AbstractOutputStreamAppenderFactory
{
  private java.lang.String host;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      org.hibernate.validator.constraints.NotEmpty()

  private int port;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      io.dropwizard.validation.PortRange()
    RuntimeVisibleTypeAnnotations: 
      FIELD
        io.dropwizard.validation.PortRange()

  private io.dropwizard.util.Duration connectionTimeout;
    descriptor: Lio/dropwizard/util/Duration;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      javax.validation.constraints.NotNull()

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

  private io.dropwizard.util.Size sendBufferSize;
    descriptor: Lio/dropwizard/util/Size;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      io.dropwizard.validation.MinSize(value = 1)
    RuntimeVisibleTypeAnnotations: 
      FIELD
        io.dropwizard.validation.MinSize(value = 1)

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.dropwizard.logging.TcpSocketAppenderFactory this
         0: .line 57
            aload 0 /* this */
            invokespecial io.dropwizard.logging.AbstractOutputStreamAppenderFactory.<init>:()V
         1: .line 60
            aload 0 /* this */
            ldc "localhost"
            putfield io.dropwizard.logging.TcpSocketAppenderFactory.host:Ljava/lang/String;
         2: .line 63
            aload 0 /* this */
            sipush 4560
            putfield io.dropwizard.logging.TcpSocketAppenderFactory.port:I
         3: .line 66
            aload 0 /* this */
            ldc 500
            invokestatic io.dropwizard.util.Duration.milliseconds:(J)Lio/dropwizard/util/Duration;
            putfield io.dropwizard.logging.TcpSocketAppenderFactory.connectionTimeout:Lio/dropwizard/util/Duration;
         4: .line 68
            aload 0 /* this */
            iconst_1
            putfield io.dropwizard.logging.TcpSocketAppenderFactory.immediateFlush:Z
         5: .line 71
            aload 0 /* this */
            ldc 8
            invokestatic io.dropwizard.util.Size.kilobytes:(J)Lio/dropwizard/util/Size;
            putfield io.dropwizard.logging.TcpSocketAppenderFactory.sendBufferSize:Lio/dropwizard/util/Size;
         6: .line 57
            return
        end local 0 // io.dropwizard.logging.TcpSocketAppenderFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/dropwizard/logging/TcpSocketAppenderFactory<TE;>;

  public java.lang.String getHost();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.dropwizard.logging.TcpSocketAppenderFactory this
         0: .line 75
            aload 0 /* this */
            getfield io.dropwizard.logging.TcpSocketAppenderFactory.host:Ljava/lang/String;
            areturn
        end local 0 // io.dropwizard.logging.TcpSocketAppenderFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/dropwizard/logging/TcpSocketAppenderFactory<TE;>;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()

  public void setHost(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.dropwizard.logging.TcpSocketAppenderFactory this
        start local 1 // java.lang.String host
         0: .line 80
            aload 0 /* this */
            aload 1 /* host */
            putfield io.dropwizard.logging.TcpSocketAppenderFactory.host:Ljava/lang/String;
         1: .line 81
            return
        end local 1 // java.lang.String host
        end local 0 // io.dropwizard.logging.TcpSocketAppenderFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/dropwizard/logging/TcpSocketAppenderFactory<TE;>;
            0    2     1  host  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()
    MethodParameters:
      Name  Flags
      host  

  public int getPort();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.dropwizard.logging.TcpSocketAppenderFactory this
         0: .line 85
            aload 0 /* this */
            getfield io.dropwizard.logging.TcpSocketAppenderFactory.port:I
            ireturn
        end local 0 // io.dropwizard.logging.TcpSocketAppenderFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/dropwizard/logging/TcpSocketAppenderFactory<TE;>;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()

  public void setPort(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.dropwizard.logging.TcpSocketAppenderFactory this
        start local 1 // int port
         0: .line 90
            aload 0 /* this */
            iload 1 /* port */
            putfield io.dropwizard.logging.TcpSocketAppenderFactory.port:I
         1: .line 91
            return
        end local 1 // int port
        end local 0 // io.dropwizard.logging.TcpSocketAppenderFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/dropwizard/logging/TcpSocketAppenderFactory<TE;>;
            0    2     1  port  I
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()
    MethodParameters:
      Name  Flags
      port  

  public io.dropwizard.util.Duration getConnectionTimeout();
    descriptor: ()Lio/dropwizard/util/Duration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.dropwizard.logging.TcpSocketAppenderFactory this
         0: .line 95
            aload 0 /* this */
            getfield io.dropwizard.logging.TcpSocketAppenderFactory.connectionTimeout:Lio/dropwizard/util/Duration;
            areturn
        end local 0 // io.dropwizard.logging.TcpSocketAppenderFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/dropwizard/logging/TcpSocketAppenderFactory<TE;>;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()

  public void setConnectionTimeout(io.dropwizard.util.Duration);
    descriptor: (Lio/dropwizard/util/Duration;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.dropwizard.logging.TcpSocketAppenderFactory this
        start local 1 // io.dropwizard.util.Duration connectionTimeout
         0: .line 100
            aload 0 /* this */
            aload 1 /* connectionTimeout */
            putfield io.dropwizard.logging.TcpSocketAppenderFactory.connectionTimeout:Lio/dropwizard/util/Duration;
         1: .line 101
            return
        end local 1 // io.dropwizard.util.Duration connectionTimeout
        end local 0 // io.dropwizard.logging.TcpSocketAppenderFactory this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    2     0               this  Lio/dropwizard/logging/TcpSocketAppenderFactory<TE;>;
            0    2     1  connectionTimeout  Lio/dropwizard/util/Duration;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()
    MethodParameters:
                   Name  Flags
      connectionTimeout  

  public boolean isImmediateFlush();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.dropwizard.logging.TcpSocketAppenderFactory this
         0: .line 105
            aload 0 /* this */
            getfield io.dropwizard.logging.TcpSocketAppenderFactory.immediateFlush:Z
            ireturn
        end local 0 // io.dropwizard.logging.TcpSocketAppenderFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/dropwizard/logging/TcpSocketAppenderFactory<TE;>;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()

  public void setImmediateFlush(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.dropwizard.logging.TcpSocketAppenderFactory this
        start local 1 // boolean immediateFlush
         0: .line 110
            aload 0 /* this */
            iload 1 /* immediateFlush */
            putfield io.dropwizard.logging.TcpSocketAppenderFactory.immediateFlush:Z
         1: .line 111
            return
        end local 1 // boolean immediateFlush
        end local 0 // io.dropwizard.logging.TcpSocketAppenderFactory this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lio/dropwizard/logging/TcpSocketAppenderFactory<TE;>;
            0    2     1  immediateFlush  Z
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()
    MethodParameters:
                Name  Flags
      immediateFlush  

  public io.dropwizard.util.Size getSendBufferSize();
    descriptor: ()Lio/dropwizard/util/Size;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.dropwizard.logging.TcpSocketAppenderFactory this
         0: .line 115
            aload 0 /* this */
            getfield io.dropwizard.logging.TcpSocketAppenderFactory.sendBufferSize:Lio/dropwizard/util/Size;
            areturn
        end local 0 // io.dropwizard.logging.TcpSocketAppenderFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/dropwizard/logging/TcpSocketAppenderFactory<TE;>;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()

  public void setSendBufferSize(io.dropwizard.util.Size);
    descriptor: (Lio/dropwizard/util/Size;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.dropwizard.logging.TcpSocketAppenderFactory this
        start local 1 // io.dropwizard.util.Size sendBufferSize
         0: .line 120
            aload 0 /* this */
            aload 1 /* sendBufferSize */
            putfield io.dropwizard.logging.TcpSocketAppenderFactory.sendBufferSize:Lio/dropwizard/util/Size;
         1: .line 121
            return
        end local 1 // io.dropwizard.util.Size sendBufferSize
        end local 0 // io.dropwizard.logging.TcpSocketAppenderFactory this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lio/dropwizard/logging/TcpSocketAppenderFactory<TE;>;
            0    2     1  sendBufferSize  Lio/dropwizard/util/Size;
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonProperty()
    MethodParameters:
                Name  Flags
      sendBufferSize  

  protected ch.qos.logback.core.OutputStreamAppender<E> appender(ch.qos.logback.classic.LoggerContext);
    descriptor: (Lch/qos/logback/classic/LoggerContext;)Lch/qos/logback/core/OutputStreamAppender;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=3, args_size=2
        start local 0 // io.dropwizard.logging.TcpSocketAppenderFactory this
        start local 1 // ch.qos.logback.classic.LoggerContext context
         0: .line 125
            new io.dropwizard.logging.socket.DropwizardSocketAppender
            dup
            aload 0 /* this */
            getfield io.dropwizard.logging.TcpSocketAppenderFactory.host:Ljava/lang/String;
            aload 0 /* this */
            getfield io.dropwizard.logging.TcpSocketAppenderFactory.port:I
         1: .line 126
            aload 0 /* this */
            getfield io.dropwizard.logging.TcpSocketAppenderFactory.connectionTimeout:Lio/dropwizard/util/Duration;
            invokevirtual io.dropwizard.util.Duration.toMilliseconds:()J
            l2i
            aload 0 /* this */
            getfield io.dropwizard.logging.TcpSocketAppenderFactory.sendBufferSize:Lio/dropwizard/util/Size;
            invokevirtual io.dropwizard.util.Size.toBytes:()J
            l2i
            aload 0 /* this */
            invokevirtual io.dropwizard.logging.TcpSocketAppenderFactory.socketFactory:()Ljavax/net/SocketFactory;
         2: .line 125
            invokespecial io.dropwizard.logging.socket.DropwizardSocketAppender.<init>:(Ljava/lang/String;IIILjavax/net/SocketFactory;)V
            astore 2 /* appender */
        start local 2 // ch.qos.logback.core.OutputStreamAppender appender
         3: .line 127
            aload 2 /* appender */
            aload 1 /* context */
            invokevirtual ch.qos.logback.core.OutputStreamAppender.setContext:(Lch/qos/logback/core/Context;)V
         4: .line 128
            aload 2 /* appender */
            ldc "tcp-socket-appender"
            invokevirtual ch.qos.logback.core.OutputStreamAppender.setName:(Ljava/lang/String;)V
         5: .line 129
            aload 2 /* appender */
            aload 0 /* this */
            getfield io.dropwizard.logging.TcpSocketAppenderFactory.immediateFlush:Z
            invokevirtual ch.qos.logback.core.OutputStreamAppender.setImmediateFlush:(Z)V
         6: .line 130
            aload 2 /* appender */
            areturn
        end local 2 // ch.qos.logback.core.OutputStreamAppender appender
        end local 1 // ch.qos.logback.classic.LoggerContext context
        end local 0 // io.dropwizard.logging.TcpSocketAppenderFactory this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lio/dropwizard/logging/TcpSocketAppenderFactory<TE;>;
            0    7     1   context  Lch/qos/logback/classic/LoggerContext;
            3    7     2  appender  Lch/qos/logback/core/OutputStreamAppender<TE;>;
    Signature: (Lch/qos/logback/classic/LoggerContext;)Lch/qos/logback/core/OutputStreamAppender<TE;>;
    MethodParameters:
         Name  Flags
      context  

  protected javax.net.SocketFactory socketFactory();
    descriptor: ()Ljavax/net/SocketFactory;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.dropwizard.logging.TcpSocketAppenderFactory this
         0: .line 134
            invokestatic javax.net.SocketFactory.getDefault:()Ljavax/net/SocketFactory;
            areturn
        end local 0 // io.dropwizard.logging.TcpSocketAppenderFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/dropwizard/logging/TcpSocketAppenderFactory<TE;>;
}
Signature: <E::Lch/qos/logback/core/spi/DeferredProcessingAware;>Lio/dropwizard/logging/AbstractOutputStreamAppenderFactory<TE;>;
SourceFile: "TcpSocketAppenderFactory.java"
    RuntimeVisibleAnnotations: 
      com.fasterxml.jackson.annotation.JsonTypeName(value = "tcp")