class io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl extends io.vertx.ext.dropwizard.impl.AbstractMetrics implements io.vertx.core.spi.metrics.DatagramSocketMetrics
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl
  super_class: io.vertx.ext.dropwizard.impl.AbstractMetrics
{
  private com.codahale.metrics.Counter socketsCounter;
    descriptor: Lcom/codahale/metrics/Counter;
    flags: (0x0002) ACC_PRIVATE

  private com.codahale.metrics.Histogram bytesRead;
    descriptor: Lcom/codahale/metrics/Histogram;
    flags: (0x0002) ACC_PRIVATE

  private com.codahale.metrics.Histogram bytesWritten;
    descriptor: Lcom/codahale/metrics/Histogram;
    flags: (0x0002) ACC_PRIVATE

  private com.codahale.metrics.Counter exceptions;
    descriptor: Lcom/codahale/metrics/Counter;
    flags: (0x0002) ACC_PRIVATE

  void <init>(io.vertx.ext.dropwizard.impl.AbstractMetrics, java.lang.String);
    descriptor: (Lio/vertx/ext/dropwizard/impl/AbstractMetrics;Ljava/lang/String;)V
    flags: (0x0000) 
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl this
        start local 1 // io.vertx.ext.dropwizard.impl.AbstractMetrics metrics
        start local 2 // java.lang.String baseName
         0: .line 35
            aload 0 /* this */
            aload 1 /* metrics */
            invokevirtual io.vertx.ext.dropwizard.impl.AbstractMetrics.registry:()Lcom/codahale/metrics/MetricRegistry;
            aload 2 /* baseName */
            invokespecial io.vertx.ext.dropwizard.impl.AbstractMetrics.<init>:(Lcom/codahale/metrics/MetricRegistry;Ljava/lang/String;)V
         1: .line 36
            aload 0 /* this */
            aload 0 /* this */
            iconst_1
            anewarray java.lang.String
            dup
            iconst_0
            ldc "sockets"
            aastore
            invokevirtual io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl.counter:([Ljava/lang/String;)Lcom/codahale/metrics/Counter;
            putfield io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl.socketsCounter:Lcom/codahale/metrics/Counter;
         2: .line 37
            aload 0 /* this */
            aload 0 /* this */
            iconst_1
            anewarray java.lang.String
            dup
            iconst_0
            ldc "exceptions"
            aastore
            invokevirtual io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl.counter:([Ljava/lang/String;)Lcom/codahale/metrics/Counter;
            putfield io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl.exceptions:Lcom/codahale/metrics/Counter;
         3: .line 38
            aload 0 /* this */
            aload 0 /* this */
            iconst_1
            anewarray java.lang.String
            dup
            iconst_0
            ldc "bytes-written"
            aastore
            invokevirtual io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl.histogram:([Ljava/lang/String;)Lcom/codahale/metrics/Histogram;
            putfield io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl.bytesWritten:Lcom/codahale/metrics/Histogram;
         4: .line 39
            aload 0 /* this */
            getfield io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl.socketsCounter:Lcom/codahale/metrics/Counter;
            invokevirtual com.codahale.metrics.Counter.inc:()V
         5: .line 40
            return
        end local 2 // java.lang.String baseName
        end local 1 // io.vertx.ext.dropwizard.impl.AbstractMetrics metrics
        end local 0 // io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lio/vertx/ext/dropwizard/impl/DatagramSocketMetricsImpl;
            0    6     1   metrics  Lio/vertx/ext/dropwizard/impl/AbstractMetrics;
            0    6     2  baseName  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      metrics   
      baseName  

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl this
         0: .line 44
            aload 0 /* this */
            getfield io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl.socketsCounter:Lcom/codahale/metrics/Counter;
            invokevirtual com.codahale.metrics.Counter.dec:()V
         1: .line 45
            aload 0 /* this */
            invokevirtual io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl.removeAll:()V
         2: .line 46
            return
        end local 0 // io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/dropwizard/impl/DatagramSocketMetricsImpl;

  public void listening(java.lang.String, io.vertx.core.net.SocketAddress);
    descriptor: (Ljava/lang/String;Lio/vertx/core/net/SocketAddress;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl this
        start local 1 // java.lang.String localName
        start local 2 // io.vertx.core.net.SocketAddress localAddress
         0: .line 50
            new java.lang.StringBuilder
            dup
            aload 1 /* localName */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            bipush 58
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            aload 2 /* localAddress */
            invokeinterface io.vertx.core.net.SocketAddress.port:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 3 /* serverName */
        start local 3 // java.lang.String serverName
         1: .line 51
            aload 0 /* this */
            aload 0 /* this */
            iconst_2
            anewarray java.lang.String
            dup
            iconst_0
            aload 3 /* serverName */
            aastore
            dup
            iconst_1
            ldc "bytes-read"
            aastore
            invokevirtual io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl.histogram:([Ljava/lang/String;)Lcom/codahale/metrics/Histogram;
            putfield io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl.bytesRead:Lcom/codahale/metrics/Histogram;
         2: .line 52
            return
        end local 3 // java.lang.String serverName
        end local 2 // io.vertx.core.net.SocketAddress localAddress
        end local 1 // java.lang.String localName
        end local 0 // io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lio/vertx/ext/dropwizard/impl/DatagramSocketMetricsImpl;
            0    3     1     localName  Ljava/lang/String;
            0    3     2  localAddress  Lio/vertx/core/net/SocketAddress;
            1    3     3    serverName  Ljava/lang/String;
    MethodParameters:
              Name  Flags
      localName     
      localAddress  

  public void bytesRead(java.lang.Void, io.vertx.core.net.SocketAddress, long);
    descriptor: (Ljava/lang/Void;Lio/vertx/core/net/SocketAddress;J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl this
        start local 1 // java.lang.Void socketMetric
        start local 2 // io.vertx.core.net.SocketAddress remoteAddress
        start local 3 // long numberOfBytes
         0: .line 56
            aload 0 /* this */
            getfield io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl.bytesRead:Lcom/codahale/metrics/Histogram;
            ifnull 2
         1: .line 57
            aload 0 /* this */
            getfield io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl.bytesRead:Lcom/codahale/metrics/Histogram;
            lload 3 /* numberOfBytes */
            invokevirtual com.codahale.metrics.Histogram.update:(J)V
         2: .line 59
      StackMap locals:
      StackMap stack:
            return
        end local 3 // long numberOfBytes
        end local 2 // io.vertx.core.net.SocketAddress remoteAddress
        end local 1 // java.lang.Void socketMetric
        end local 0 // io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lio/vertx/ext/dropwizard/impl/DatagramSocketMetricsImpl;
            0    3     1   socketMetric  Ljava/lang/Void;
            0    3     2  remoteAddress  Lio/vertx/core/net/SocketAddress;
            0    3     3  numberOfBytes  J
    MethodParameters:
               Name  Flags
      socketMetric   
      remoteAddress  
      numberOfBytes  

  public void bytesWritten(java.lang.Void, io.vertx.core.net.SocketAddress, long);
    descriptor: (Ljava/lang/Void;Lio/vertx/core/net/SocketAddress;J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl this
        start local 1 // java.lang.Void socketMetric
        start local 2 // io.vertx.core.net.SocketAddress remoteAddress
        start local 3 // long numberOfBytes
         0: .line 63
            aload 0 /* this */
            getfield io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl.bytesWritten:Lcom/codahale/metrics/Histogram;
            lload 3 /* numberOfBytes */
            invokevirtual com.codahale.metrics.Histogram.update:(J)V
         1: .line 64
            return
        end local 3 // long numberOfBytes
        end local 2 // io.vertx.core.net.SocketAddress remoteAddress
        end local 1 // java.lang.Void socketMetric
        end local 0 // io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/vertx/ext/dropwizard/impl/DatagramSocketMetricsImpl;
            0    2     1   socketMetric  Ljava/lang/Void;
            0    2     2  remoteAddress  Lio/vertx/core/net/SocketAddress;
            0    2     3  numberOfBytes  J
    MethodParameters:
               Name  Flags
      socketMetric   
      remoteAddress  
      numberOfBytes  

  public void exceptionOccurred(java.lang.Void, io.vertx.core.net.SocketAddress, java.lang.Throwable);
    descriptor: (Ljava/lang/Void;Lio/vertx/core/net/SocketAddress;Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=4, args_size=4
        start local 0 // io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl this
        start local 1 // java.lang.Void socketMetric
        start local 2 // io.vertx.core.net.SocketAddress remoteAddress
        start local 3 // java.lang.Throwable t
         0: .line 68
            aload 0 /* this */
            getfield io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl.exceptions:Lcom/codahale/metrics/Counter;
            invokevirtual com.codahale.metrics.Counter.inc:()V
         1: .line 69
            return
        end local 3 // java.lang.Throwable t
        end local 2 // io.vertx.core.net.SocketAddress remoteAddress
        end local 1 // java.lang.Void socketMetric
        end local 0 // io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/vertx/ext/dropwizard/impl/DatagramSocketMetricsImpl;
            0    2     1   socketMetric  Ljava/lang/Void;
            0    2     2  remoteAddress  Lio/vertx/core/net/SocketAddress;
            0    2     3              t  Ljava/lang/Throwable;
    MethodParameters:
               Name  Flags
      socketMetric   
      remoteAddress  
      t              

  public void bytesRead(java.lang.Object, io.vertx.core.net.SocketAddress, long);
    descriptor: (Ljava/lang/Object;Lio/vertx/core/net/SocketAddress;J)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=5, locals=5, args_size=4
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Void
            aload 2
            lload 3
            invokevirtual io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl.bytesRead:(Ljava/lang/Void;Lio/vertx/core/net/SocketAddress;J)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void bytesWritten(java.lang.Object, io.vertx.core.net.SocketAddress, long);
    descriptor: (Ljava/lang/Object;Lio/vertx/core/net/SocketAddress;J)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=5, locals=5, args_size=4
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Void
            aload 2
            lload 3
            invokevirtual io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl.bytesWritten:(Ljava/lang/Void;Lio/vertx/core/net/SocketAddress;J)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void exceptionOccurred(java.lang.Object, io.vertx.core.net.SocketAddress, java.lang.Throwable);
    descriptor: (Ljava/lang/Object;Lio/vertx/core/net/SocketAddress;Ljava/lang/Throwable;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Void
            aload 2
            aload 3
            invokevirtual io.vertx.ext.dropwizard.impl.DatagramSocketMetricsImpl.exceptionOccurred:(Ljava/lang/Void;Lio/vertx/core/net/SocketAddress;Ljava/lang/Throwable;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "DatagramSocketMetricsImpl.java"