public class io.vertx.servicediscovery.impl.DiscoveryImpl implements io.vertx.servicediscovery.ServiceDiscovery, io.vertx.servicediscovery.spi.ServicePublisher
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.servicediscovery.impl.DiscoveryImpl
  super_class: java.lang.Object
{
  private final io.vertx.core.Vertx vertx;
    descriptor: Lio/vertx/core/Vertx;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String announce;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String usage;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.vertx.servicediscovery.spi.ServiceDiscoveryBackend backend;
    descriptor: Lio/vertx/servicediscovery/spi/ServiceDiscoveryBackend;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.Set<io.vertx.servicediscovery.spi.ServiceImporter> importers;
    descriptor: Ljava/util/Set;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Set<Lio/vertx/servicediscovery/spi/ServiceImporter;>;

  private final java.util.Set<io.vertx.servicediscovery.spi.ServiceExporter> exporters;
    descriptor: Ljava/util/Set;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Set<Lio/vertx/servicediscovery/spi/ServiceExporter;>;

  private final java.util.Set<io.vertx.servicediscovery.ServiceReference> bindings;
    descriptor: Ljava/util/Set;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Set<Lio/vertx/servicediscovery/ServiceReference;>;

  private static final io.vertx.core.logging.Logger LOGGER;
    descriptor: Lio/vertx/core/logging/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final java.lang.String id;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.vertx.servicediscovery.ServiceDiscoveryOptions options;
    descriptor: Lio/vertx/servicediscovery/ServiceDiscoveryOptions;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 50
            ldc Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokestatic io.vertx.core.logging.LoggerFactory.getLogger:(Ljava/lang/String;)Lio/vertx/core/logging/Logger;
            putstatic io.vertx.servicediscovery.impl.DiscoveryImpl.LOGGER:Lio/vertx/core/logging/Logger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(io.vertx.core.Vertx, io.vertx.servicediscovery.ServiceDiscoveryOptions);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/servicediscovery/ServiceDiscoveryOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // io.vertx.servicediscovery.ServiceDiscoveryOptions options
         0: .line 56
            aload 0 /* this */
            aload 1 /* vertx */
            aload 2 /* options */
            aload 2 /* options */
            invokevirtual io.vertx.servicediscovery.ServiceDiscoveryOptions.getBackendConfiguration:()Lio/vertx/core/json/JsonObject;
            ldc "backend-name"
            aconst_null
            invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            invokestatic io.vertx.servicediscovery.impl.DiscoveryImpl.getBackend:(Ljava/lang/String;)Lio/vertx/servicediscovery/spi/ServiceDiscoveryBackend;
            invokespecial io.vertx.servicediscovery.impl.DiscoveryImpl.<init>:(Lio/vertx/core/Vertx;Lio/vertx/servicediscovery/ServiceDiscoveryOptions;Lio/vertx/servicediscovery/spi/ServiceDiscoveryBackend;)V
         1: .line 57
            return
        end local 2 // io.vertx.servicediscovery.ServiceDiscoveryOptions options
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0    2     1    vertx  Lio/vertx/core/Vertx;
            0    2     2  options  Lio/vertx/servicediscovery/ServiceDiscoveryOptions;
    MethodParameters:
         Name  Flags
      vertx    
      options  

  void <init>(io.vertx.core.Vertx, io.vertx.servicediscovery.ServiceDiscoveryOptions, io.vertx.servicediscovery.spi.ServiceDiscoveryBackend);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/servicediscovery/ServiceDiscoveryOptions;Lio/vertx/servicediscovery/spi/ServiceDiscoveryBackend;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // io.vertx.servicediscovery.ServiceDiscoveryOptions options
        start local 3 // io.vertx.servicediscovery.spi.ServiceDiscoveryBackend backend
         0: .line 66
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 47
            aload 0 /* this */
            new java.util.concurrent.CopyOnWriteArraySet
            dup
            invokespecial java.util.concurrent.CopyOnWriteArraySet.<init>:()V
            putfield io.vertx.servicediscovery.impl.DiscoveryImpl.importers:Ljava/util/Set;
         2: .line 48
            aload 0 /* this */
            new java.util.concurrent.CopyOnWriteArraySet
            dup
            invokespecial java.util.concurrent.CopyOnWriteArraySet.<init>:()V
            putfield io.vertx.servicediscovery.impl.DiscoveryImpl.exporters:Ljava/util/Set;
         3: .line 49
            aload 0 /* this */
            new java.util.concurrent.CopyOnWriteArraySet
            dup
            invokespecial java.util.concurrent.CopyOnWriteArraySet.<init>:()V
            putfield io.vertx.servicediscovery.impl.DiscoveryImpl.bindings:Ljava/util/Set;
         4: .line 67
            aload 0 /* this */
            aload 1 /* vertx */
            putfield io.vertx.servicediscovery.impl.DiscoveryImpl.vertx:Lio/vertx/core/Vertx;
         5: .line 68
            aload 0 /* this */
            aload 2 /* options */
            invokevirtual io.vertx.servicediscovery.ServiceDiscoveryOptions.getAnnounceAddress:()Ljava/lang/String;
            putfield io.vertx.servicediscovery.impl.DiscoveryImpl.announce:Ljava/lang/String;
         6: .line 69
            aload 0 /* this */
            aload 2 /* options */
            invokevirtual io.vertx.servicediscovery.ServiceDiscoveryOptions.getUsageAddress:()Ljava/lang/String;
            putfield io.vertx.servicediscovery.impl.DiscoveryImpl.usage:Ljava/lang/String;
         7: .line 71
            aload 0 /* this */
            aload 3 /* backend */
            putfield io.vertx.servicediscovery.impl.DiscoveryImpl.backend:Lio/vertx/servicediscovery/spi/ServiceDiscoveryBackend;
         8: .line 72
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.backend:Lio/vertx/servicediscovery/spi/ServiceDiscoveryBackend;
            aload 1 /* vertx */
            aload 2 /* options */
            invokevirtual io.vertx.servicediscovery.ServiceDiscoveryOptions.getBackendConfiguration:()Lio/vertx/core/json/JsonObject;
            invokeinterface io.vertx.servicediscovery.spi.ServiceDiscoveryBackend.init:(Lio/vertx/core/Vertx;Lio/vertx/core/json/JsonObject;)V
         9: .line 73
            aload 0 /* this */
            aload 2 /* options */
            invokevirtual io.vertx.servicediscovery.ServiceDiscoveryOptions.getName:()Ljava/lang/String;
            ifnull 10
            aload 2 /* options */
            invokevirtual io.vertx.servicediscovery.ServiceDiscoveryOptions.getName:()Ljava/lang/String;
            goto 11
      StackMap locals: io.vertx.servicediscovery.impl.DiscoveryImpl io.vertx.core.Vertx io.vertx.servicediscovery.ServiceDiscoveryOptions io.vertx.servicediscovery.spi.ServiceDiscoveryBackend
      StackMap stack: io.vertx.servicediscovery.impl.DiscoveryImpl
        10: aload 0 /* this */
            aload 1 /* vertx */
            invokevirtual io.vertx.servicediscovery.impl.DiscoveryImpl.getNodeId:(Lio/vertx/core/Vertx;)Ljava/lang/String;
      StackMap locals: io.vertx.servicediscovery.impl.DiscoveryImpl io.vertx.core.Vertx io.vertx.servicediscovery.ServiceDiscoveryOptions io.vertx.servicediscovery.spi.ServiceDiscoveryBackend
      StackMap stack: io.vertx.servicediscovery.impl.DiscoveryImpl java.lang.String
        11: putfield io.vertx.servicediscovery.impl.DiscoveryImpl.id:Ljava/lang/String;
        12: .line 74
            aload 0 /* this */
            aload 2 /* options */
            putfield io.vertx.servicediscovery.impl.DiscoveryImpl.options:Lio/vertx/servicediscovery/ServiceDiscoveryOptions;
        13: .line 75
            return
        end local 3 // io.vertx.servicediscovery.spi.ServiceDiscoveryBackend backend
        end local 2 // io.vertx.servicediscovery.ServiceDiscoveryOptions options
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   14     0     this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0   14     1    vertx  Lio/vertx/core/Vertx;
            0   14     2  options  Lio/vertx/servicediscovery/ServiceDiscoveryOptions;
            0   14     3  backend  Lio/vertx/servicediscovery/spi/ServiceDiscoveryBackend;
    MethodParameters:
         Name  Flags
      vertx    
      options  
      backend  

  public void initialize(io.vertx.core.Handler<io.vertx.servicediscovery.ServiceDiscovery>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 1 // io.vertx.core.Handler completionHandler
         0: .line 79
            aload 0 /* this */
            invokevirtual io.vertx.servicediscovery.impl.DiscoveryImpl.getServiceImporterFromSPI:()Ljava/util/Collection;
            astore 2 /* spi */
        start local 2 // java.util.Collection spi
         1: .line 80
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            astore 3 /* map */
        start local 3 // java.util.Map map
         2: .line 81
            aload 2 /* spi */
            invokeinterface java.util.Collection.stream:()Ljava/util/stream/Stream;
            aload 0 /* this */
            aload 3 /* map */
            invokedynamic apply(Lio/vertx/servicediscovery/impl/DiscoveryImpl;Ljava/util/Map;)Ljava/util/function/Function;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  io/vertx/servicediscovery/impl/DiscoveryImpl.lambda$0(Ljava/util/Map;Lio/vertx/servicediscovery/spi/ServiceImporter;)Lio/vertx/core/Future; (7)
                  (Lio/vertx/servicediscovery/spi/ServiceImporter;)Lio/vertx/core/Future;
            invokeinterface java.util.stream.Stream.map:(Ljava/util/function/Function;)Ljava/util/stream/Stream;
         3: .line 86
            invokestatic java.util.stream.Collectors.toList:()Ljava/util/stream/Collector;
            invokeinterface java.util.stream.Stream.collect:(Ljava/util/stream/Collector;)Ljava/lang/Object;
            checkcast java.util.List
         4: .line 81
            astore 4 /* futures */
        start local 4 // java.util.List futures
         5: .line 88
            aload 4 /* futures */
            invokestatic io.vertx.core.CompositeFuture.join:(Ljava/util/List;)Lio/vertx/core/CompositeFuture;
         6: .line 89
            aload 0 /* this */
            aload 4 /* futures */
            aload 3 /* map */
            aload 1 /* completionHandler */
            invokedynamic handle(Lio/vertx/servicediscovery/impl/DiscoveryImpl;Ljava/util/List;Ljava/util/Map;Lio/vertx/core/Handler;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/servicediscovery/impl/DiscoveryImpl.lambda$1(Ljava/util/List;Ljava/util/Map;Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.CompositeFuture.setHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/CompositeFuture;
            pop
         7: .line 101
            return
        end local 4 // java.util.List futures
        end local 3 // java.util.Map map
        end local 2 // java.util.Collection spi
        end local 1 // io.vertx.core.Handler completionHandler
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    8     0               this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0    8     1  completionHandler  Lio/vertx/core/Handler<Lio/vertx/servicediscovery/ServiceDiscovery;>;
            1    8     2                spi  Ljava/util/Collection<Lio/vertx/servicediscovery/spi/ServiceImporter;>;
            2    8     3                map  Ljava/util/Map<Lio/vertx/core/Future;Lio/vertx/servicediscovery/spi/ServiceImporter;>;
            5    8     4            futures  Ljava/util/List<Lio/vertx/core/Future;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/servicediscovery/ServiceDiscovery;>;)V
    MethodParameters:
                   Name  Flags
      completionHandler  

  private java.lang.String getNodeId(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 104
            aload 1 /* vertx */
            invokeinterface io.vertx.core.Vertx.isClustered:()Z
            ifeq 2
         1: .line 105
            aload 1 /* vertx */
            checkcast io.vertx.core.impl.VertxInternal
            invokeinterface io.vertx.core.impl.VertxInternal.getNodeID:()Ljava/lang/String;
            areturn
         2: .line 107
      StackMap locals:
      StackMap stack:
            ldc "localhost"
            areturn
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0    3     1  vertx  Lio/vertx/core/Vertx;
    MethodParameters:
       Name  Flags
      vertx  

  private static io.vertx.servicediscovery.spi.ServiceDiscoveryBackend getBackend(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/servicediscovery/spi/ServiceDiscoveryBackend;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // java.lang.String maybeName
         0: .line 112
            ldc Lio/vertx/servicediscovery/spi/ServiceDiscoveryBackend;
            invokestatic java.util.ServiceLoader.load:(Ljava/lang/Class;)Ljava/util/ServiceLoader;
            astore 1 /* backends */
        start local 1 // java.util.ServiceLoader backends
         1: .line 113
            aload 1 /* backends */
            invokevirtual java.util.ServiceLoader.iterator:()Ljava/util/Iterator;
            astore 2 /* iterator */
        start local 2 // java.util.Iterator iterator
         2: .line 115
            aload 0 /* maybeName */
            ifnonnull 6
         3: .line 116
            aload 2 /* iterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 5
         4: .line 117
            new io.vertx.servicediscovery.impl.DefaultServiceDiscoveryBackend
            dup
            invokespecial io.vertx.servicediscovery.impl.DefaultServiceDiscoveryBackend.<init>:()V
            areturn
         5: .line 119
      StackMap locals: java.util.ServiceLoader java.util.Iterator
      StackMap stack:
            aload 2 /* iterator */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.vertx.servicediscovery.spi.ServiceDiscoveryBackend
            areturn
         6: .line 123
      StackMap locals:
      StackMap stack:
            aload 0 /* maybeName */
            ldc Lio/vertx/servicediscovery/impl/DefaultServiceDiscoveryBackend;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 11
         7: .line 124
            new io.vertx.servicediscovery.impl.DefaultServiceDiscoveryBackend
            dup
            invokespecial io.vertx.servicediscovery.impl.DefaultServiceDiscoveryBackend.<init>:()V
            areturn
         8: .line 129
      StackMap locals:
      StackMap stack:
            aload 2 /* iterator */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.vertx.servicediscovery.spi.ServiceDiscoveryBackend
            astore 3 /* backend */
        start local 3 // io.vertx.servicediscovery.spi.ServiceDiscoveryBackend backend
         9: .line 130
            aload 3 /* backend */
            invokeinterface io.vertx.servicediscovery.spi.ServiceDiscoveryBackend.name:()Ljava/lang/String;
            aload 0 /* maybeName */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 11
        10: .line 131
            aload 3 /* backend */
            areturn
        end local 3 // io.vertx.servicediscovery.spi.ServiceDiscoveryBackend backend
        11: .line 128
      StackMap locals:
      StackMap stack:
            aload 2 /* iterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 8
        12: .line 135
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Cannot find the discovery backend implementation with name "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* maybeName */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " in "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        13: .line 136
            ldc "the classpath"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        14: .line 135
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // java.util.Iterator iterator
        end local 1 // java.util.ServiceLoader backends
        end local 0 // java.lang.String maybeName
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   15     0  maybeName  Ljava/lang/String;
            1   15     1   backends  Ljava/util/ServiceLoader<Lio/vertx/servicediscovery/spi/ServiceDiscoveryBackend;>;
            2   15     2   iterator  Ljava/util/Iterator<Lio/vertx/servicediscovery/spi/ServiceDiscoveryBackend;>;
            9   11     3    backend  Lio/vertx/servicediscovery/spi/ServiceDiscoveryBackend;
    MethodParameters:
           Name  Flags
      maybeName  

  private java.util.Collection<io.vertx.servicediscovery.spi.ServiceImporter> getServiceImporterFromSPI();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
         0: .line 141
            ldc Lio/vertx/servicediscovery/spi/ServiceImporter;
            invokestatic java.util.ServiceLoader.load:(Ljava/lang/Class;)Ljava/util/ServiceLoader;
            astore 1 /* importers */
        start local 1 // java.util.ServiceLoader importers
         1: .line 142
            aload 1 /* importers */
            invokevirtual java.util.ServiceLoader.iterator:()Ljava/util/Iterator;
            astore 2 /* iterator */
        start local 2 // java.util.Iterator iterator
         2: .line 144
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 3 /* list */
        start local 3 // java.util.List list
         3: .line 146
            goto 6
         4: .line 147
      StackMap locals: java.util.ServiceLoader java.util.Iterator java.util.List
      StackMap stack:
            aload 2 /* iterator */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.vertx.servicediscovery.spi.ServiceImporter
            astore 4 /* importer */
        start local 4 // io.vertx.servicediscovery.spi.ServiceImporter importer
         5: .line 148
            aload 3 /* list */
            aload 4 /* importer */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 4 // io.vertx.servicediscovery.spi.ServiceImporter importer
         6: .line 146
      StackMap locals:
      StackMap stack:
            aload 2 /* iterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         7: .line 151
            aload 3 /* list */
            areturn
        end local 3 // java.util.List list
        end local 2 // java.util.Iterator iterator
        end local 1 // java.util.ServiceLoader importers
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            1    8     1  importers  Ljava/util/ServiceLoader<Lio/vertx/servicediscovery/spi/ServiceImporter;>;
            2    8     2   iterator  Ljava/util/Iterator<Lio/vertx/servicediscovery/spi/ServiceImporter;>;
            3    8     3       list  Ljava/util/List<Lio/vertx/servicediscovery/spi/ServiceImporter;>;
            5    6     4   importer  Lio/vertx/servicediscovery/spi/ServiceImporter;
    Signature: ()Ljava/util/Collection<Lio/vertx/servicediscovery/spi/ServiceImporter;>;

  public io.vertx.servicediscovery.ServiceReference getReference(io.vertx.servicediscovery.Record);
    descriptor: (Lio/vertx/servicediscovery/Record;)Lio/vertx/servicediscovery/ServiceReference;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 1 // io.vertx.servicediscovery.Record record
         0: .line 157
            aload 0 /* this */
            aload 1 /* record */
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            invokevirtual io.vertx.servicediscovery.impl.DiscoveryImpl.getReferenceWithConfiguration:(Lio/vertx/servicediscovery/Record;Lio/vertx/core/json/JsonObject;)Lio/vertx/servicediscovery/ServiceReference;
            areturn
        end local 1 // io.vertx.servicediscovery.Record record
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0    1     1  record  Lio/vertx/servicediscovery/Record;
    MethodParameters:
        Name  Flags
      record  

  public io.vertx.servicediscovery.ServiceReference getReferenceWithConfiguration(io.vertx.servicediscovery.Record, io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/servicediscovery/Record;Lio/vertx/core/json/JsonObject;)Lio/vertx/servicediscovery/ServiceReference;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 1 // io.vertx.servicediscovery.Record record
        start local 2 // io.vertx.core.json.JsonObject configuration
         0: .line 162
            aload 1 /* record */
            invokestatic io.vertx.servicediscovery.impl.ServiceTypes.get:(Lio/vertx/servicediscovery/Record;)Lio/vertx/servicediscovery/spi/ServiceType;
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.vertx:Lio/vertx/core/Vertx;
            aload 0 /* this */
            aload 1 /* record */
            aload 2 /* configuration */
            invokeinterface io.vertx.servicediscovery.spi.ServiceType.get:(Lio/vertx/core/Vertx;Lio/vertx/servicediscovery/ServiceDiscovery;Lio/vertx/servicediscovery/Record;Lio/vertx/core/json/JsonObject;)Lio/vertx/servicediscovery/ServiceReference;
            astore 3 /* reference */
        start local 3 // io.vertx.servicediscovery.ServiceReference reference
         1: .line 163
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.bindings:Ljava/util/Set;
            aload 3 /* reference */
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         2: .line 164
            aload 0 /* this */
            aload 3 /* reference */
            invokevirtual io.vertx.servicediscovery.impl.DiscoveryImpl.sendBindEvent:(Lio/vertx/servicediscovery/ServiceReference;)V
         3: .line 165
            aload 3 /* reference */
            areturn
        end local 3 // io.vertx.servicediscovery.ServiceReference reference
        end local 2 // io.vertx.core.json.JsonObject configuration
        end local 1 // io.vertx.servicediscovery.Record record
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0           this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0    4     1         record  Lio/vertx/servicediscovery/Record;
            0    4     2  configuration  Lio/vertx/core/json/JsonObject;
            1    4     3      reference  Lio/vertx/servicediscovery/ServiceReference;
    MethodParameters:
               Name  Flags
      record         
      configuration  

  private void sendBindEvent(io.vertx.servicediscovery.ServiceReference);
    descriptor: (Lio/vertx/servicediscovery/ServiceReference;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 1 // io.vertx.servicediscovery.ServiceReference reference
         0: .line 169
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.usage:Ljava/lang/String;
            ifnonnull 2
         1: .line 170
            return
         2: .line 172
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.vertx:Lio/vertx/core/Vertx;
            invokeinterface io.vertx.core.Vertx.eventBus:()Lio/vertx/core/eventbus/EventBus;
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.usage:Ljava/lang/String;
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
         3: .line 173
            ldc "type"
            ldc "bind"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
         4: .line 174
            ldc "record"
            aload 1 /* reference */
            invokeinterface io.vertx.servicediscovery.ServiceReference.record:()Lio/vertx/servicediscovery/Record;
            invokevirtual io.vertx.servicediscovery.Record.toJson:()Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Lio/vertx/core/json/JsonObject;)Lio/vertx/core/json/JsonObject;
         5: .line 175
            ldc "id"
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.id:Ljava/lang/String;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
         6: .line 172
            invokeinterface io.vertx.core.eventbus.EventBus.publish:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/eventbus/EventBus;
            pop
         7: .line 176
            return
        end local 1 // io.vertx.servicediscovery.ServiceReference reference
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0    8     1  reference  Lio/vertx/servicediscovery/ServiceReference;
    MethodParameters:
           Name  Flags
      reference  

  public boolean release(io.vertx.servicediscovery.ServiceReference);
    descriptor: (Lio/vertx/servicediscovery/ServiceReference;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 1 // io.vertx.servicediscovery.ServiceReference reference
         0: .line 180
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.bindings:Ljava/util/Set;
            aload 1 /* reference */
            invokeinterface java.util.Set.remove:(Ljava/lang/Object;)Z
            istore 2 /* removed */
        start local 2 // boolean removed
         1: .line 181
            aload 1 /* reference */
            invokeinterface io.vertx.servicediscovery.ServiceReference.release:()V
         2: .line 182
            aload 0 /* this */
            aload 1 /* reference */
            invokevirtual io.vertx.servicediscovery.impl.DiscoveryImpl.sendUnbindEvent:(Lio/vertx/servicediscovery/ServiceReference;)V
         3: .line 183
            iload 2 /* removed */
            ireturn
        end local 2 // boolean removed
        end local 1 // io.vertx.servicediscovery.ServiceReference reference
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0    4     1  reference  Lio/vertx/servicediscovery/ServiceReference;
            1    4     2    removed  Z
    MethodParameters:
           Name  Flags
      reference  

  private void sendUnbindEvent(io.vertx.servicediscovery.ServiceReference);
    descriptor: (Lio/vertx/servicediscovery/ServiceReference;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 1 // io.vertx.servicediscovery.ServiceReference reference
         0: .line 187
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.usage:Ljava/lang/String;
            ifnonnull 2
         1: .line 188
            return
         2: .line 190
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.vertx:Lio/vertx/core/Vertx;
            invokeinterface io.vertx.core.Vertx.eventBus:()Lio/vertx/core/eventbus/EventBus;
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.usage:Ljava/lang/String;
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
         3: .line 191
            ldc "type"
            ldc "release"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
         4: .line 192
            ldc "record"
            aload 1 /* reference */
            invokeinterface io.vertx.servicediscovery.ServiceReference.record:()Lio/vertx/servicediscovery/Record;
            invokevirtual io.vertx.servicediscovery.Record.toJson:()Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Lio/vertx/core/json/JsonObject;)Lio/vertx/core/json/JsonObject;
         5: .line 193
            ldc "id"
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.id:Ljava/lang/String;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
         6: .line 190
            invokeinterface io.vertx.core.eventbus.EventBus.publish:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/eventbus/EventBus;
            pop
         7: .line 194
            return
        end local 1 // io.vertx.servicediscovery.ServiceReference reference
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0    8     1  reference  Lio/vertx/servicediscovery/ServiceReference;
    MethodParameters:
           Name  Flags
      reference  

  public io.vertx.servicediscovery.ServiceDiscovery registerServiceImporter(io.vertx.servicediscovery.spi.ServiceImporter, io.vertx.core.json.JsonObject, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/servicediscovery/spi/ServiceImporter;Lio/vertx/core/json/JsonObject;Lio/vertx/core/Handler;)Lio/vertx/servicediscovery/ServiceDiscovery;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 1 // io.vertx.servicediscovery.spi.ServiceImporter importer
        start local 2 // io.vertx.core.json.JsonObject configuration
        start local 3 // io.vertx.core.Handler completionHandler
         0: .line 200
            aload 2 /* configuration */
            ifnonnull 3
         1: .line 201
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            astore 4 /* conf */
        start local 4 // io.vertx.core.json.JsonObject conf
         2: .line 202
            goto 4
        end local 4 // io.vertx.core.json.JsonObject conf
         3: .line 203
      StackMap locals:
      StackMap stack:
            aload 2 /* configuration */
            astore 4 /* conf */
        start local 4 // io.vertx.core.json.JsonObject conf
         4: .line 206
      StackMap locals: io.vertx.core.json.JsonObject
      StackMap stack:
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 5 /* completed */
        start local 5 // io.vertx.core.Promise completed
         5: .line 207
            aload 5 /* completed */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
         6: .line 208
            aload 0 /* this */
            aload 1 /* importer */
            aload 3 /* completionHandler */
            invokedynamic handle(Lio/vertx/servicediscovery/impl/DiscoveryImpl;Lio/vertx/servicediscovery/spi/ServiceImporter;Lio/vertx/core/Handler;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/servicediscovery/impl/DiscoveryImpl.lambda$2(Lio/vertx/servicediscovery/spi/ServiceImporter;Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
         7: .line 207
            invokeinterface io.vertx.core.Future.setHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         8: .line 225
            aload 1 /* importer */
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.vertx:Lio/vertx/core/Vertx;
            aload 0 /* this */
            aload 4 /* conf */
            aload 5 /* completed */
            invokeinterface io.vertx.servicediscovery.spi.ServiceImporter.start:(Lio/vertx/core/Vertx;Lio/vertx/servicediscovery/spi/ServicePublisher;Lio/vertx/core/json/JsonObject;Lio/vertx/core/Promise;)V
         9: .line 226
            aload 0 /* this */
            areturn
        end local 5 // io.vertx.core.Promise completed
        end local 4 // io.vertx.core.json.JsonObject conf
        end local 3 // io.vertx.core.Handler completionHandler
        end local 2 // io.vertx.core.json.JsonObject configuration
        end local 1 // io.vertx.servicediscovery.spi.ServiceImporter importer
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   10     0               this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0   10     1           importer  Lio/vertx/servicediscovery/spi/ServiceImporter;
            0   10     2      configuration  Lio/vertx/core/json/JsonObject;
            0   10     3  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
            2    3     4               conf  Lio/vertx/core/json/JsonObject;
            4   10     4               conf  Lio/vertx/core/json/JsonObject;
            5   10     5          completed  Lio/vertx/core/Promise<Ljava/lang/Void;>;
    Signature: (Lio/vertx/servicediscovery/spi/ServiceImporter;Lio/vertx/core/json/JsonObject;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/vertx/servicediscovery/ServiceDiscovery;
    MethodParameters:
                   Name  Flags
      importer           
      configuration      
      completionHandler  

  public io.vertx.servicediscovery.ServiceDiscovery registerServiceImporter(io.vertx.servicediscovery.spi.ServiceImporter, io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/servicediscovery/spi/ServiceImporter;Lio/vertx/core/json/JsonObject;)Lio/vertx/servicediscovery/ServiceDiscovery;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 1 // io.vertx.servicediscovery.spi.ServiceImporter importer
        start local 2 // io.vertx.core.json.JsonObject configuration
         0: .line 231
            aload 0 /* this */
            aload 1 /* importer */
            aload 2 /* configuration */
            aconst_null
            invokevirtual io.vertx.servicediscovery.impl.DiscoveryImpl.registerServiceImporter:(Lio/vertx/servicediscovery/spi/ServiceImporter;Lio/vertx/core/json/JsonObject;Lio/vertx/core/Handler;)Lio/vertx/servicediscovery/ServiceDiscovery;
            areturn
        end local 2 // io.vertx.core.json.JsonObject configuration
        end local 1 // io.vertx.servicediscovery.spi.ServiceImporter importer
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0    1     1       importer  Lio/vertx/servicediscovery/spi/ServiceImporter;
            0    1     2  configuration  Lio/vertx/core/json/JsonObject;
    MethodParameters:
               Name  Flags
      importer       
      configuration  

  public io.vertx.servicediscovery.ServiceDiscovery registerServiceExporter(io.vertx.servicediscovery.spi.ServiceExporter, io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/servicediscovery/spi/ServiceExporter;Lio/vertx/core/json/JsonObject;)Lio/vertx/servicediscovery/ServiceDiscovery;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 1 // io.vertx.servicediscovery.spi.ServiceExporter exporter
        start local 2 // io.vertx.core.json.JsonObject configuration
         0: .line 236
            aload 0 /* this */
            aload 1 /* exporter */
            aload 2 /* configuration */
            aconst_null
            invokevirtual io.vertx.servicediscovery.impl.DiscoveryImpl.registerServiceExporter:(Lio/vertx/servicediscovery/spi/ServiceExporter;Lio/vertx/core/json/JsonObject;Lio/vertx/core/Handler;)Lio/vertx/servicediscovery/ServiceDiscovery;
            areturn
        end local 2 // io.vertx.core.json.JsonObject configuration
        end local 1 // io.vertx.servicediscovery.spi.ServiceExporter exporter
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0    1     1       exporter  Lio/vertx/servicediscovery/spi/ServiceExporter;
            0    1     2  configuration  Lio/vertx/core/json/JsonObject;
    MethodParameters:
               Name  Flags
      exporter       
      configuration  

  public io.vertx.servicediscovery.ServiceDiscovery registerServiceExporter(io.vertx.servicediscovery.spi.ServiceExporter, io.vertx.core.json.JsonObject, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/servicediscovery/spi/ServiceExporter;Lio/vertx/core/json/JsonObject;Lio/vertx/core/Handler;)Lio/vertx/servicediscovery/ServiceDiscovery;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 1 // io.vertx.servicediscovery.spi.ServiceExporter exporter
        start local 2 // io.vertx.core.json.JsonObject configuration
        start local 3 // io.vertx.core.Handler completionHandler
         0: .line 243
            aload 2 /* configuration */
            ifnonnull 3
         1: .line 244
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            astore 4 /* conf */
        start local 4 // io.vertx.core.json.JsonObject conf
         2: .line 245
            goto 4
        end local 4 // io.vertx.core.json.JsonObject conf
         3: .line 246
      StackMap locals:
      StackMap stack:
            aload 2 /* configuration */
            astore 4 /* conf */
        start local 4 // io.vertx.core.json.JsonObject conf
         4: .line 249
      StackMap locals: io.vertx.core.json.JsonObject
      StackMap stack:
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 5 /* completed */
        start local 5 // io.vertx.core.Promise completed
         5: .line 250
            aload 5 /* completed */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
         6: .line 251
            aload 0 /* this */
            aload 1 /* exporter */
            aload 3 /* completionHandler */
            invokedynamic handle(Lio/vertx/servicediscovery/impl/DiscoveryImpl;Lio/vertx/servicediscovery/spi/ServiceExporter;Lio/vertx/core/Handler;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/servicediscovery/impl/DiscoveryImpl.lambda$3(Lio/vertx/servicediscovery/spi/ServiceExporter;Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
         7: .line 250
            invokeinterface io.vertx.core.Future.setHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         8: .line 268
            aload 1 /* exporter */
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.vertx:Lio/vertx/core/Vertx;
            aload 0 /* this */
            aload 4 /* conf */
            aload 5 /* completed */
            invokeinterface io.vertx.servicediscovery.spi.ServiceExporter.init:(Lio/vertx/core/Vertx;Lio/vertx/servicediscovery/spi/ServicePublisher;Lio/vertx/core/json/JsonObject;Lio/vertx/core/Promise;)V
         9: .line 269
            aload 0 /* this */
            areturn
        end local 5 // io.vertx.core.Promise completed
        end local 4 // io.vertx.core.json.JsonObject conf
        end local 3 // io.vertx.core.Handler completionHandler
        end local 2 // io.vertx.core.json.JsonObject configuration
        end local 1 // io.vertx.servicediscovery.spi.ServiceExporter exporter
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   10     0               this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0   10     1           exporter  Lio/vertx/servicediscovery/spi/ServiceExporter;
            0   10     2      configuration  Lio/vertx/core/json/JsonObject;
            0   10     3  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
            2    3     4               conf  Lio/vertx/core/json/JsonObject;
            4   10     4               conf  Lio/vertx/core/json/JsonObject;
            5   10     5          completed  Lio/vertx/core/Promise<Ljava/lang/Void;>;
    Signature: (Lio/vertx/servicediscovery/spi/ServiceExporter;Lio/vertx/core/json/JsonObject;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/vertx/servicediscovery/ServiceDiscovery;
    MethodParameters:
                   Name  Flags
      exporter           
      configuration      
      completionHandler  

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
         0: .line 274
            getstatic io.vertx.servicediscovery.impl.DiscoveryImpl.LOGGER:Lio/vertx/core/logging/Logger;
            ldc "Stopping service discovery"
            invokevirtual io.vertx.core.logging.Logger.info:(Ljava/lang/Object;)V
         1: .line 275
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 1 /* futures */
        start local 1 // java.util.List futures
         2: .line 276
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.importers:Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 3
            goto 7
      StackMap locals: io.vertx.servicediscovery.impl.DiscoveryImpl java.util.List top java.util.Iterator
      StackMap stack:
         3: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.vertx.servicediscovery.spi.ServiceImporter
            astore 2 /* importer */
        start local 2 // io.vertx.servicediscovery.spi.ServiceImporter importer
         4: .line 277
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 4 /* promise */
        start local 4 // io.vertx.core.Promise promise
         5: .line 278
            aload 2 /* importer */
            aload 4 /* promise */
            invokedynamic handle(Lio/vertx/core/Promise;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/servicediscovery/impl/DiscoveryImpl.lambda$4(Lio/vertx/core/Promise;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.servicediscovery.spi.ServiceImporter.close:(Lio/vertx/core/Handler;)V
         6: .line 279
            aload 1 /* futures */
            aload 4 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 4 // io.vertx.core.Promise promise
        end local 2 // io.vertx.servicediscovery.spi.ServiceImporter importer
         7: .line 276
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         8: .line 282
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.exporters:Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 3
            goto 13
      StackMap locals:
      StackMap stack:
         9: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.vertx.servicediscovery.spi.ServiceExporter
            astore 2 /* exporter */
        start local 2 // io.vertx.servicediscovery.spi.ServiceExporter exporter
        10: .line 283
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 4 /* promise */
        start local 4 // io.vertx.core.Promise promise
        11: .line 284
            aload 2 /* exporter */
            aload 4 /* promise */
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic handle(Lio/vertx/core/Promise;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/core/Promise.complete(Ljava/lang/Object;)V (9 itf)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.servicediscovery.spi.ServiceExporter.close:(Lio/vertx/core/Handler;)V
        12: .line 285
            aload 1 /* futures */
            aload 4 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 4 // io.vertx.core.Promise promise
        end local 2 // io.vertx.servicediscovery.spi.ServiceExporter exporter
        13: .line 282
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 9
        14: .line 288
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.bindings:Ljava/util/Set;
            invokedynamic accept()Ljava/util/function/Consumer;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/servicediscovery/ServiceReference.release()V (9 itf)
                  (Lio/vertx/servicediscovery/ServiceReference;)V
            invokeinterface java.util.Set.forEach:(Ljava/util/function/Consumer;)V
        15: .line 289
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.bindings:Ljava/util/Set;
            invokeinterface java.util.Set.clear:()V
        16: .line 291
            aload 1 /* futures */
            invokestatic io.vertx.core.CompositeFuture.all:(Ljava/util/List;)Lio/vertx/core/CompositeFuture;
            invokedynamic handle()Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/servicediscovery/impl/DiscoveryImpl.lambda$7(Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.CompositeFuture.setHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/CompositeFuture;
            pop
        17: .line 298
            return
        end local 1 // java.util.List futures
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   18     0      this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            2   18     1   futures  Ljava/util/List<Lio/vertx/core/Future;>;
            4    7     2  importer  Lio/vertx/servicediscovery/spi/ServiceImporter;
            5    7     4   promise  Lio/vertx/core/Promise<Ljava/lang/Void;>;
           10   13     2  exporter  Lio/vertx/servicediscovery/spi/ServiceExporter;
           11   13     4   promise  Lio/vertx/core/Promise<Ljava/lang/Void;>;

  public void publish(io.vertx.servicediscovery.Record, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.servicediscovery.Record>>);
    descriptor: (Lio/vertx/servicediscovery/Record;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 1 // io.vertx.servicediscovery.Record record
        start local 2 // io.vertx.core.Handler resultHandler
         0: .line 302
            aload 1 /* record */
            invokevirtual io.vertx.servicediscovery.Record.getStatus:()Lio/vertx/servicediscovery/Status;
            ifnull 1
            aload 1 /* record */
            invokevirtual io.vertx.servicediscovery.Record.getStatus:()Lio/vertx/servicediscovery/Status;
            getstatic io.vertx.servicediscovery.Status.UNKNOWN:Lio/vertx/servicediscovery/Status;
            if_acmpne 2
         1: .line 303
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.servicediscovery.Status.UP:Lio/vertx/servicediscovery/Status;
            goto 3
      StackMap locals:
      StackMap stack:
         2: aload 1 /* record */
            invokevirtual io.vertx.servicediscovery.Record.getStatus:()Lio/vertx/servicediscovery/Status;
         3: .line 302
      StackMap locals:
      StackMap stack: io.vertx.servicediscovery.Status
            astore 3 /* status */
        start local 3 // io.vertx.servicediscovery.Status status
         4: .line 305
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.backend:Lio/vertx/servicediscovery/spi/ServiceDiscoveryBackend;
            aload 1 /* record */
            aload 3 /* status */
            invokevirtual io.vertx.servicediscovery.Record.setStatus:(Lio/vertx/servicediscovery/Status;)Lio/vertx/servicediscovery/Record;
            aload 0 /* this */
            aload 2 /* resultHandler */
            aload 3 /* status */
            invokedynamic handle(Lio/vertx/servicediscovery/impl/DiscoveryImpl;Lio/vertx/core/Handler;Lio/vertx/servicediscovery/Status;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/servicediscovery/impl/DiscoveryImpl.lambda$8(Lio/vertx/core/Handler;Lio/vertx/servicediscovery/Status;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.servicediscovery.spi.ServiceDiscoveryBackend.store:(Lio/vertx/servicediscovery/Record;Lio/vertx/core/Handler;)V
         5: .line 322
            return
        end local 3 // io.vertx.servicediscovery.Status status
        end local 2 // io.vertx.core.Handler resultHandler
        end local 1 // io.vertx.servicediscovery.Record record
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0           this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0    6     1         record  Lio/vertx/servicediscovery/Record;
            0    6     2  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/servicediscovery/Record;>;>;
            4    6     3         status  Lio/vertx/servicediscovery/Status;
    Signature: (Lio/vertx/servicediscovery/Record;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/servicediscovery/Record;>;>;)V
    MethodParameters:
               Name  Flags
      record         
      resultHandler  

  public void unpublish(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 1 // java.lang.String id
        start local 2 // io.vertx.core.Handler resultHandler
         0: .line 326
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.backend:Lio/vertx/servicediscovery/spi/ServiceDiscoveryBackend;
            aload 1 /* id */
            aload 0 /* this */
            aload 2 /* resultHandler */
            aload 1 /* id */
            invokedynamic handle(Lio/vertx/servicediscovery/impl/DiscoveryImpl;Lio/vertx/core/Handler;Ljava/lang/String;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/servicediscovery/impl/DiscoveryImpl.lambda$9(Lio/vertx/core/Handler;Ljava/lang/String;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.servicediscovery.spi.ServiceDiscoveryBackend.remove:(Ljava/lang/String;Lio/vertx/core/Handler;)V
         1: .line 345
            return
        end local 2 // io.vertx.core.Handler resultHandler
        end local 1 // java.lang.String id
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0    2     1             id  Ljava/lang/String;
            0    2     2  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
               Name  Flags
      id             
      resultHandler  

  public void getRecord(io.vertx.core.json.JsonObject, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.servicediscovery.Record>>);
    descriptor: (Lio/vertx/core/json/JsonObject;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 1 // io.vertx.core.json.JsonObject filter
        start local 2 // io.vertx.core.Handler resultHandler
         0: .line 350
            iconst_0
            istore 3 /* includeOutOfService */
        start local 3 // boolean includeOutOfService
         1: .line 352
            aload 1 /* filter */
            ifnonnull 4
         2: .line 353
            invokedynamic apply()Ljava/util/function/Function;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  io/vertx/servicediscovery/impl/DiscoveryImpl.lambda$10(Lio/vertx/servicediscovery/Record;)Ljava/lang/Boolean; (6)
                  (Lio/vertx/servicediscovery/Record;)Ljava/lang/Boolean;
            astore 4 /* accept */
        start local 4 // java.util.function.Function accept
         3: .line 354
            goto 8
        end local 4 // java.util.function.Function accept
         4: .line 355
      StackMap locals: int
      StackMap stack:
            aload 1 /* filter */
            ldc "status"
            invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
            ifnull 5
            iconst_1
            goto 6
      StackMap locals:
      StackMap stack:
         5: iconst_0
      StackMap locals:
      StackMap stack: int
         6: istore 3 /* includeOutOfService */
         7: .line 356
            aload 1 /* filter */
            invokedynamic apply(Lio/vertx/core/json/JsonObject;)Ljava/util/function/Function;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  io/vertx/servicediscovery/impl/DiscoveryImpl.lambda$11(Lio/vertx/core/json/JsonObject;Lio/vertx/servicediscovery/Record;)Ljava/lang/Boolean; (6)
                  (Lio/vertx/servicediscovery/Record;)Ljava/lang/Boolean;
            astore 4 /* accept */
        start local 4 // java.util.function.Function accept
         8: .line 359
      StackMap locals: java.util.function.Function
      StackMap stack:
            aload 0 /* this */
            aload 4 /* accept */
            iload 3 /* includeOutOfService */
            aload 2 /* resultHandler */
            invokevirtual io.vertx.servicediscovery.impl.DiscoveryImpl.getRecord:(Ljava/util/function/Function;ZLio/vertx/core/Handler;)V
         9: .line 360
            return
        end local 4 // java.util.function.Function accept
        end local 3 // boolean includeOutOfService
        end local 2 // io.vertx.core.Handler resultHandler
        end local 1 // io.vertx.core.json.JsonObject filter
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   10     0                 this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0   10     1               filter  Lio/vertx/core/json/JsonObject;
            0   10     2        resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/servicediscovery/Record;>;>;
            1   10     3  includeOutOfService  Z
            3    4     4               accept  Ljava/util/function/Function<Lio/vertx/servicediscovery/Record;Ljava/lang/Boolean;>;
            8   10     4               accept  Ljava/util/function/Function<Lio/vertx/servicediscovery/Record;Ljava/lang/Boolean;>;
    Signature: (Lio/vertx/core/json/JsonObject;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/servicediscovery/Record;>;>;)V
    MethodParameters:
               Name  Flags
      filter         
      resultHandler  

  public void getRecord(java.util.function.Function<io.vertx.servicediscovery.Record, java.lang.Boolean>, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.servicediscovery.Record>>);
    descriptor: (Ljava/util/function/Function;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 1 // java.util.function.Function filter
        start local 2 // io.vertx.core.Handler resultHandler
         0: .line 364
            aload 0 /* this */
            aload 1 /* filter */
            iconst_0
            aload 2 /* resultHandler */
            invokevirtual io.vertx.servicediscovery.impl.DiscoveryImpl.getRecord:(Ljava/util/function/Function;ZLio/vertx/core/Handler;)V
         1: .line 365
            return
        end local 2 // io.vertx.core.Handler resultHandler
        end local 1 // java.util.function.Function filter
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0    2     1         filter  Ljava/util/function/Function<Lio/vertx/servicediscovery/Record;Ljava/lang/Boolean;>;
            0    2     2  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/servicediscovery/Record;>;>;
    Signature: (Ljava/util/function/Function<Lio/vertx/servicediscovery/Record;Ljava/lang/Boolean;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/servicediscovery/Record;>;>;)V
    MethodParameters:
               Name  Flags
      filter         
      resultHandler  

  public void getRecord(java.util.function.Function<io.vertx.servicediscovery.Record, java.lang.Boolean>, boolean, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.servicediscovery.Record>>);
    descriptor: (Ljava/util/function/Function;ZLio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 1 // java.util.function.Function filter
        start local 2 // boolean includeOutOfService
        start local 3 // io.vertx.core.Handler resultHandler
         0: .line 370
            aload 1 /* filter */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 371
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.backend:Lio/vertx/servicediscovery/spi/ServiceDiscoveryBackend;
            aload 3 /* resultHandler */
            aload 1 /* filter */
            iload 2 /* includeOutOfService */
            invokedynamic handle(Lio/vertx/core/Handler;Ljava/util/function/Function;Z)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/servicediscovery/impl/DiscoveryImpl.lambda$12(Lio/vertx/core/Handler;Ljava/util/function/Function;ZLio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.servicediscovery.spi.ServiceDiscoveryBackend.getRecords:(Lio/vertx/core/Handler;)V
         2: .line 386
            return
        end local 3 // io.vertx.core.Handler resultHandler
        end local 2 // boolean includeOutOfService
        end local 1 // java.util.function.Function filter
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    3     0                 this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0    3     1               filter  Ljava/util/function/Function<Lio/vertx/servicediscovery/Record;Ljava/lang/Boolean;>;
            0    3     2  includeOutOfService  Z
            0    3     3        resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/servicediscovery/Record;>;>;
    Signature: (Ljava/util/function/Function<Lio/vertx/servicediscovery/Record;Ljava/lang/Boolean;>;ZLio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/servicediscovery/Record;>;>;)V
    MethodParameters:
                     Name  Flags
      filter               
      includeOutOfService  
      resultHandler        

  public void getRecords(io.vertx.core.json.JsonObject, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.util.List<io.vertx.servicediscovery.Record>>>);
    descriptor: (Lio/vertx/core/json/JsonObject;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 1 // io.vertx.core.json.JsonObject filter
        start local 2 // io.vertx.core.Handler resultHandler
         0: .line 390
            iconst_0
            istore 3 /* includeOutOfService */
        start local 3 // boolean includeOutOfService
         1: .line 392
            aload 1 /* filter */
            ifnonnull 4
         2: .line 393
            invokedynamic apply()Ljava/util/function/Function;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  io/vertx/servicediscovery/impl/DiscoveryImpl.lambda$15(Lio/vertx/servicediscovery/Record;)Ljava/lang/Boolean; (6)
                  (Lio/vertx/servicediscovery/Record;)Ljava/lang/Boolean;
            astore 4 /* accept */
        start local 4 // java.util.function.Function accept
         3: .line 394
            goto 8
        end local 4 // java.util.function.Function accept
         4: .line 395
      StackMap locals: int
      StackMap stack:
            aload 1 /* filter */
            ldc "status"
            invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
            ifnull 5
            iconst_1
            goto 6
      StackMap locals:
      StackMap stack:
         5: iconst_0
      StackMap locals:
      StackMap stack: int
         6: istore 3 /* includeOutOfService */
         7: .line 396
            aload 1 /* filter */
            invokedynamic apply(Lio/vertx/core/json/JsonObject;)Ljava/util/function/Function;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  io/vertx/servicediscovery/impl/DiscoveryImpl.lambda$16(Lio/vertx/core/json/JsonObject;Lio/vertx/servicediscovery/Record;)Ljava/lang/Boolean; (6)
                  (Lio/vertx/servicediscovery/Record;)Ljava/lang/Boolean;
            astore 4 /* accept */
        start local 4 // java.util.function.Function accept
         8: .line 399
      StackMap locals: java.util.function.Function
      StackMap stack:
            aload 0 /* this */
            aload 4 /* accept */
            iload 3 /* includeOutOfService */
            aload 2 /* resultHandler */
            invokevirtual io.vertx.servicediscovery.impl.DiscoveryImpl.getRecords:(Ljava/util/function/Function;ZLio/vertx/core/Handler;)V
         9: .line 400
            return
        end local 4 // java.util.function.Function accept
        end local 3 // boolean includeOutOfService
        end local 2 // io.vertx.core.Handler resultHandler
        end local 1 // io.vertx.core.json.JsonObject filter
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   10     0                 this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0   10     1               filter  Lio/vertx/core/json/JsonObject;
            0   10     2        resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/util/List<Lio/vertx/servicediscovery/Record;>;>;>;
            1   10     3  includeOutOfService  Z
            3    4     4               accept  Ljava/util/function/Function<Lio/vertx/servicediscovery/Record;Ljava/lang/Boolean;>;
            8   10     4               accept  Ljava/util/function/Function<Lio/vertx/servicediscovery/Record;Ljava/lang/Boolean;>;
    Signature: (Lio/vertx/core/json/JsonObject;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/util/List<Lio/vertx/servicediscovery/Record;>;>;>;)V
    MethodParameters:
               Name  Flags
      filter         
      resultHandler  

  public void getRecords(java.util.function.Function<io.vertx.servicediscovery.Record, java.lang.Boolean>, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.util.List<io.vertx.servicediscovery.Record>>>);
    descriptor: (Ljava/util/function/Function;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 1 // java.util.function.Function filter
        start local 2 // io.vertx.core.Handler resultHandler
         0: .line 404
            aload 0 /* this */
            aload 1 /* filter */
            iconst_0
            aload 2 /* resultHandler */
            invokevirtual io.vertx.servicediscovery.impl.DiscoveryImpl.getRecords:(Ljava/util/function/Function;ZLio/vertx/core/Handler;)V
         1: .line 405
            return
        end local 2 // io.vertx.core.Handler resultHandler
        end local 1 // java.util.function.Function filter
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0    2     1         filter  Ljava/util/function/Function<Lio/vertx/servicediscovery/Record;Ljava/lang/Boolean;>;
            0    2     2  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/util/List<Lio/vertx/servicediscovery/Record;>;>;>;
    Signature: (Ljava/util/function/Function<Lio/vertx/servicediscovery/Record;Ljava/lang/Boolean;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/util/List<Lio/vertx/servicediscovery/Record;>;>;>;)V
    MethodParameters:
               Name  Flags
      filter         
      resultHandler  

  public void getRecords(java.util.function.Function<io.vertx.servicediscovery.Record, java.lang.Boolean>, boolean, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.util.List<io.vertx.servicediscovery.Record>>>);
    descriptor: (Ljava/util/function/Function;ZLio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 1 // java.util.function.Function filter
        start local 2 // boolean includeOutOfService
        start local 3 // io.vertx.core.Handler resultHandler
         0: .line 409
            aload 1 /* filter */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 410
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.backend:Lio/vertx/servicediscovery/spi/ServiceDiscoveryBackend;
            aload 3 /* resultHandler */
            aload 1 /* filter */
            iload 2 /* includeOutOfService */
            invokedynamic handle(Lio/vertx/core/Handler;Ljava/util/function/Function;Z)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/servicediscovery/impl/DiscoveryImpl.lambda$17(Lio/vertx/core/Handler;Ljava/util/function/Function;ZLio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.servicediscovery.spi.ServiceDiscoveryBackend.getRecords:(Lio/vertx/core/Handler;)V
         2: .line 422
            return
        end local 3 // io.vertx.core.Handler resultHandler
        end local 2 // boolean includeOutOfService
        end local 1 // java.util.function.Function filter
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    3     0                 this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0    3     1               filter  Ljava/util/function/Function<Lio/vertx/servicediscovery/Record;Ljava/lang/Boolean;>;
            0    3     2  includeOutOfService  Z
            0    3     3        resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/util/List<Lio/vertx/servicediscovery/Record;>;>;>;
    Signature: (Ljava/util/function/Function<Lio/vertx/servicediscovery/Record;Ljava/lang/Boolean;>;ZLio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/util/List<Lio/vertx/servicediscovery/Record;>;>;>;)V
    MethodParameters:
                     Name  Flags
      filter               
      includeOutOfService  
      resultHandler        

  public void update(io.vertx.servicediscovery.Record, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.servicediscovery.Record>>);
    descriptor: (Lio/vertx/servicediscovery/Record;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 1 // io.vertx.servicediscovery.Record record
        start local 2 // io.vertx.core.Handler resultHandler
         0: .line 426
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.backend:Lio/vertx/servicediscovery/spi/ServiceDiscoveryBackend;
            aload 1 /* record */
            aload 2 /* resultHandler */
            aload 1 /* record */
            invokedynamic handle(Lio/vertx/core/Handler;Lio/vertx/servicediscovery/Record;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/servicediscovery/impl/DiscoveryImpl.lambda$20(Lio/vertx/core/Handler;Lio/vertx/servicediscovery/Record;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.servicediscovery.spi.ServiceDiscoveryBackend.update:(Lio/vertx/servicediscovery/Record;Lio/vertx/core/Handler;)V
         1: .line 434
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.exporters:Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: io.vertx.servicediscovery.impl.DiscoveryImpl io.vertx.servicediscovery.Record io.vertx.core.Handler top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.vertx.servicediscovery.spi.ServiceExporter
            astore 3 /* exporter */
        start local 3 // io.vertx.servicediscovery.spi.ServiceExporter exporter
         3: .line 435
            aload 3 /* exporter */
            aload 1 /* record */
            invokeinterface io.vertx.servicediscovery.spi.ServiceExporter.onUpdate:(Lio/vertx/servicediscovery/Record;)V
        end local 3 // io.vertx.servicediscovery.spi.ServiceExporter exporter
         4: .line 434
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 438
            new io.vertx.servicediscovery.Record
            dup
            aload 1 /* record */
            invokespecial io.vertx.servicediscovery.Record.<init>:(Lio/vertx/servicediscovery/Record;)V
            astore 3 /* announcedRecord */
        start local 3 // io.vertx.servicediscovery.Record announcedRecord
         6: .line 439
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.vertx:Lio/vertx/core/Vertx;
            invokeinterface io.vertx.core.Vertx.eventBus:()Lio/vertx/core/eventbus/EventBus;
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.announce:Ljava/lang/String;
            aload 3 /* announcedRecord */
            invokevirtual io.vertx.servicediscovery.Record.toJson:()Lio/vertx/core/json/JsonObject;
            invokeinterface io.vertx.core.eventbus.EventBus.publish:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/eventbus/EventBus;
            pop
         7: .line 440
            return
        end local 3 // io.vertx.servicediscovery.Record announcedRecord
        end local 2 // io.vertx.core.Handler resultHandler
        end local 1 // io.vertx.servicediscovery.Record record
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    8     0             this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0    8     1           record  Lio/vertx/servicediscovery/Record;
            0    8     2    resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/servicediscovery/Record;>;>;
            3    4     3         exporter  Lio/vertx/servicediscovery/spi/ServiceExporter;
            6    8     3  announcedRecord  Lio/vertx/servicediscovery/Record;
    Signature: (Lio/vertx/servicediscovery/Record;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/servicediscovery/Record;>;>;)V
    MethodParameters:
               Name  Flags
      record         
      resultHandler  

  public java.util.Set<io.vertx.servicediscovery.ServiceReference> bindings();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
         0: .line 444
            new java.util.HashSet
            dup
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.bindings:Ljava/util/Set;
            invokespecial java.util.HashSet.<init>:(Ljava/util/Collection;)V
            areturn
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
    Signature: ()Ljava/util/Set<Lio/vertx/servicediscovery/ServiceReference;>;

  public io.vertx.servicediscovery.ServiceDiscoveryOptions options();
    descriptor: ()Lio/vertx/servicediscovery/ServiceDiscoveryOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
         0: .line 449
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.options:Lio/vertx/servicediscovery/ServiceDiscoveryOptions;
            areturn
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;

  public void unbind(io.vertx.servicediscovery.ServiceReference);
    descriptor: (Lio/vertx/servicediscovery/ServiceReference;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 1 // io.vertx.servicediscovery.ServiceReference reference
         0: .line 459
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.bindings:Ljava/util/Set;
            aload 1 /* reference */
            invokeinterface java.util.Set.remove:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 460
            aload 0 /* this */
            aload 1 /* reference */
            invokevirtual io.vertx.servicediscovery.impl.DiscoveryImpl.sendUnbindEvent:(Lio/vertx/servicediscovery/ServiceReference;)V
         2: .line 462
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.servicediscovery.ServiceReference reference
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0    3     1  reference  Lio/vertx/servicediscovery/ServiceReference;
    MethodParameters:
           Name  Flags
      reference  

  private io.vertx.core.Future lambda$0(java.util.Map, io.vertx.servicediscovery.spi.ServiceImporter);
    descriptor: (Ljava/util/Map;Lio/vertx/servicediscovery/spi/ServiceImporter;)Lio/vertx/core/Future;
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 2 // io.vertx.servicediscovery.spi.ServiceImporter imp
         0: .line 82
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 3 /* promise */
        start local 3 // io.vertx.core.Promise promise
         1: .line 83
            aload 2 /* imp */
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.vertx:Lio/vertx/core/Vertx;
            aload 0 /* this */
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            aload 3 /* promise */
            invokeinterface io.vertx.servicediscovery.spi.ServiceImporter.start:(Lio/vertx/core/Vertx;Lio/vertx/servicediscovery/spi/ServicePublisher;Lio/vertx/core/json/JsonObject;Lio/vertx/core/Promise;)V
         2: .line 84
            aload 1
            aload 3 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            aload 2 /* imp */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         3: .line 85
            aload 3 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 3 // io.vertx.core.Promise promise
        end local 2 // io.vertx.servicediscovery.spi.ServiceImporter imp
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0    4     2      imp  Lio/vertx/servicediscovery/spi/ServiceImporter;
            1    4     3  promise  Lio/vertx/core/Promise<Ljava/lang/Void;>;

  private void lambda$1(java.util.List, java.util.Map, io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Ljava/util/List;Ljava/util/Map;Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=8, args_size=5
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 4 // io.vertx.core.AsyncResult ar
         0: .line 90
            aload 1
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 6
            goto 8
      StackMap locals: io.vertx.servicediscovery.impl.DiscoveryImpl java.util.List java.util.Map io.vertx.core.Handler io.vertx.core.AsyncResult top java.util.Iterator
      StackMap stack:
         1: aload 6
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.vertx.core.Future
            astore 5 /* f */
        start local 5 // io.vertx.core.Future f
         2: .line 91
            aload 2
            aload 5 /* f */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.vertx.servicediscovery.spi.ServiceImporter
            astore 7 /* serviceImporter */
        start local 7 // io.vertx.servicediscovery.spi.ServiceImporter serviceImporter
         3: .line 92
            aload 5 /* f */
            invokeinterface io.vertx.core.Future.succeeded:()Z
            ifeq 7
         4: .line 93
            getstatic io.vertx.servicediscovery.impl.DiscoveryImpl.LOGGER:Lio/vertx/core/logging/Logger;
            new java.lang.StringBuilder
            dup
            ldc "Auto-registration of importer "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 7 /* serviceImporter */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual io.vertx.core.logging.Logger.info:(Ljava/lang/Object;)V
         5: .line 94
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.importers:Ljava/util/Set;
            aload 7 /* serviceImporter */
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         6: .line 95
            goto 8
         7: .line 96
      StackMap locals: io.vertx.servicediscovery.impl.DiscoveryImpl java.util.List java.util.Map io.vertx.core.Handler io.vertx.core.AsyncResult io.vertx.core.Future java.util.Iterator io.vertx.servicediscovery.spi.ServiceImporter
      StackMap stack:
            getstatic io.vertx.servicediscovery.impl.DiscoveryImpl.LOGGER:Lio/vertx/core/logging/Logger;
            new java.lang.StringBuilder
            dup
            ldc "Failed to register importer "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 7 /* serviceImporter */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual io.vertx.core.logging.Logger.warn:(Ljava/lang/Object;)V
        end local 7 // io.vertx.servicediscovery.spi.ServiceImporter serviceImporter
        end local 5 // io.vertx.core.Future f
         8: .line 90
      StackMap locals: io.vertx.servicediscovery.impl.DiscoveryImpl java.util.List java.util.Map io.vertx.core.Handler io.vertx.core.AsyncResult top java.util.Iterator
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         9: .line 99
            aload 3
            aload 0 /* this */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        10: .line 100
            return
        end local 4 // io.vertx.core.AsyncResult ar
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   11     0             this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0   11     4               ar  Lio/vertx/core/AsyncResult<Lio/vertx/core/CompositeFuture;>;
            2    8     5                f  Lio/vertx/core/Future;
            3    8     7  serviceImporter  Lio/vertx/servicediscovery/spi/ServiceImporter;

  private void lambda$2(io.vertx.servicediscovery.spi.ServiceImporter, io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/servicediscovery/spi/ServiceImporter;Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 3 // io.vertx.core.AsyncResult ar
         0: .line 209
            aload 3 /* ar */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 5
         1: .line 210
            getstatic io.vertx.servicediscovery.impl.DiscoveryImpl.LOGGER:Lio/vertx/core/logging/Logger;
            new java.lang.StringBuilder
            dup
            ldc "Cannot start the service importer "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 3 /* ar */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokevirtual io.vertx.core.logging.Logger.error:(Ljava/lang/Object;Ljava/lang/Throwable;)V
         2: .line 211
            aload 2
            ifnull 9
         3: .line 212
            aload 2
            aload 3 /* ar */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         4: .line 214
            goto 9
         5: .line 215
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.importers:Ljava/util/Set;
            aload 1
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         6: .line 216
            getstatic io.vertx.servicediscovery.impl.DiscoveryImpl.LOGGER:Lio/vertx/core/logging/Logger;
            new java.lang.StringBuilder
            dup
            ldc "Service importer "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc " started"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual io.vertx.core.logging.Logger.info:(Ljava/lang/Object;)V
         7: .line 218
            aload 2
            ifnull 9
         8: .line 219
            aload 2
            aconst_null
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         9: .line 222
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.vertx.core.AsyncResult ar
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0   10     3    ar  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;

  private void lambda$3(io.vertx.servicediscovery.spi.ServiceExporter, io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/servicediscovery/spi/ServiceExporter;Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 3 // io.vertx.core.AsyncResult ar
         0: .line 252
            aload 3 /* ar */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 5
         1: .line 253
            getstatic io.vertx.servicediscovery.impl.DiscoveryImpl.LOGGER:Lio/vertx/core/logging/Logger;
            new java.lang.StringBuilder
            dup
            ldc "Cannot start the service importer "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 3 /* ar */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokevirtual io.vertx.core.logging.Logger.error:(Ljava/lang/Object;Ljava/lang/Throwable;)V
         2: .line 254
            aload 2
            ifnull 9
         3: .line 255
            aload 2
            aload 3 /* ar */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         4: .line 257
            goto 9
         5: .line 258
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.exporters:Ljava/util/Set;
            aload 1
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         6: .line 259
            getstatic io.vertx.servicediscovery.impl.DiscoveryImpl.LOGGER:Lio/vertx/core/logging/Logger;
            new java.lang.StringBuilder
            dup
            ldc "Service exporter "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc " started"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual io.vertx.core.logging.Logger.info:(Ljava/lang/Object;)V
         7: .line 261
            aload 2
            ifnull 9
         8: .line 262
            aload 2
            aconst_null
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         9: .line 265
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.vertx.core.AsyncResult ar
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0   10     3    ar  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;

  private static void lambda$4(io.vertx.core.Promise, java.lang.Void);
    descriptor: (Lio/vertx/core/Promise;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=2, args_size=2
        start local 1 // java.lang.Void v
         0: .line 278
            aload 0
            invokeinterface io.vertx.core.Promise.complete:()V
            return
        end local 1 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     1     v  Ljava/lang/Void;

  private static void lambda$7(io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.AsyncResult ar
         0: .line 292
            aload 0 /* ar */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 3
         1: .line 293
            getstatic io.vertx.servicediscovery.impl.DiscoveryImpl.LOGGER:Lio/vertx/core/logging/Logger;
            ldc "Discovery bridges stopped"
            invokevirtual io.vertx.core.logging.Logger.info:(Ljava/lang/Object;)V
         2: .line 294
            goto 4
         3: .line 295
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.servicediscovery.impl.DiscoveryImpl.LOGGER:Lio/vertx/core/logging/Logger;
            ldc "Some discovery bridges did not stopped smoothly"
            aload 0 /* ar */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokevirtual io.vertx.core.logging.Logger.warn:(Ljava/lang/Object;Ljava/lang/Throwable;)V
         4: .line 297
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.AsyncResult ar
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0    ar  Lio/vertx/core/AsyncResult<Lio/vertx/core/CompositeFuture;>;

  private void lambda$8(io.vertx.core.Handler, io.vertx.servicediscovery.Status, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/servicediscovery/Status;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=6, args_size=4
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 3 // io.vertx.core.AsyncResult ar
         0: .line 306
            aload 3 /* ar */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 3
         1: .line 307
            aload 1
            aload 3 /* ar */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 308
            return
         3: .line 311
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.exporters:Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 5
            goto 6
      StackMap locals: io.vertx.servicediscovery.impl.DiscoveryImpl io.vertx.core.Handler io.vertx.servicediscovery.Status io.vertx.core.AsyncResult top java.util.Iterator
      StackMap stack:
         4: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.vertx.servicediscovery.spi.ServiceExporter
            astore 4 /* exporter */
        start local 4 // io.vertx.servicediscovery.spi.ServiceExporter exporter
         5: .line 312
            aload 4 /* exporter */
            new io.vertx.servicediscovery.Record
            dup
            aload 3 /* ar */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.servicediscovery.Record
            invokespecial io.vertx.servicediscovery.Record.<init>:(Lio/vertx/servicediscovery/Record;)V
            invokeinterface io.vertx.servicediscovery.spi.ServiceExporter.onPublish:(Lio/vertx/servicediscovery/Record;)V
        end local 4 // io.vertx.servicediscovery.spi.ServiceExporter exporter
         6: .line 311
      StackMap locals:
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         7: .line 314
            new io.vertx.servicediscovery.Record
            dup
            aload 3 /* ar */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.servicediscovery.Record
            invokespecial io.vertx.servicediscovery.Record.<init>:(Lio/vertx/servicediscovery/Record;)V
            astore 4 /* announcedRecord */
        start local 4 // io.vertx.servicediscovery.Record announcedRecord
         8: .line 315
            aload 4 /* announcedRecord */
         9: .line 316
            aconst_null
            invokevirtual io.vertx.servicediscovery.Record.setRegistration:(Ljava/lang/String;)Lio/vertx/servicediscovery/Record;
        10: .line 317
            aload 2
            invokevirtual io.vertx.servicediscovery.Record.setStatus:(Lio/vertx/servicediscovery/Status;)Lio/vertx/servicediscovery/Record;
            pop
        11: .line 319
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.vertx:Lio/vertx/core/Vertx;
            invokeinterface io.vertx.core.Vertx.eventBus:()Lio/vertx/core/eventbus/EventBus;
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.announce:Ljava/lang/String;
            aload 4 /* announcedRecord */
            invokevirtual io.vertx.servicediscovery.Record.toJson:()Lio/vertx/core/json/JsonObject;
            invokeinterface io.vertx.core.eventbus.EventBus.publish:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/eventbus/EventBus;
            pop
        12: .line 320
            aload 1
            aload 3 /* ar */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.servicediscovery.Record
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        end local 4 // io.vertx.servicediscovery.Record announcedRecord
        13: .line 321
            return
        end local 3 // io.vertx.core.AsyncResult ar
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   14     0             this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0   14     3               ar  Lio/vertx/core/AsyncResult<Lio/vertx/servicediscovery/Record;>;
            5    6     4         exporter  Lio/vertx/servicediscovery/spi/ServiceExporter;
            8   13     4  announcedRecord  Lio/vertx/servicediscovery/Record;

  private void lambda$9(io.vertx.core.Handler, java.lang.String, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Ljava/lang/String;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
        start local 3 // io.vertx.core.AsyncResult record
         0: .line 327
            aload 3 /* record */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 3
         1: .line 328
            aload 1
            aload 3 /* record */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 329
            return
         3: .line 332
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.exporters:Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 5
            goto 6
      StackMap locals: io.vertx.servicediscovery.impl.DiscoveryImpl io.vertx.core.Handler java.lang.String io.vertx.core.AsyncResult top java.util.Iterator
      StackMap stack:
         4: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.vertx.servicediscovery.spi.ServiceExporter
            astore 4 /* exporter */
        start local 4 // io.vertx.servicediscovery.spi.ServiceExporter exporter
         5: .line 333
            aload 4 /* exporter */
            aload 2
            invokeinterface io.vertx.servicediscovery.spi.ServiceExporter.onUnpublish:(Ljava/lang/String;)V
        end local 4 // io.vertx.servicediscovery.spi.ServiceExporter exporter
         6: .line 332
      StackMap locals:
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         7: .line 336
            new io.vertx.servicediscovery.Record
            dup
            aload 3 /* record */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.servicediscovery.Record
            invokespecial io.vertx.servicediscovery.Record.<init>:(Lio/vertx/servicediscovery/Record;)V
            astore 4 /* announcedRecord */
        start local 4 // io.vertx.servicediscovery.Record announcedRecord
         8: .line 337
            aload 4 /* announcedRecord */
         9: .line 338
            aconst_null
            invokevirtual io.vertx.servicediscovery.Record.setRegistration:(Ljava/lang/String;)Lio/vertx/servicediscovery/Record;
        10: .line 339
            getstatic io.vertx.servicediscovery.Status.DOWN:Lio/vertx/servicediscovery/Status;
            invokevirtual io.vertx.servicediscovery.Record.setStatus:(Lio/vertx/servicediscovery/Status;)Lio/vertx/servicediscovery/Record;
            pop
        11: .line 341
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.vertx:Lio/vertx/core/Vertx;
            invokeinterface io.vertx.core.Vertx.eventBus:()Lio/vertx/core/eventbus/EventBus;
            aload 0 /* this */
            getfield io.vertx.servicediscovery.impl.DiscoveryImpl.announce:Ljava/lang/String;
            aload 4 /* announcedRecord */
            invokevirtual io.vertx.servicediscovery.Record.toJson:()Lio/vertx/core/json/JsonObject;
            invokeinterface io.vertx.core.eventbus.EventBus.publish:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/eventbus/EventBus;
            pop
        12: .line 342
            aload 1
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        end local 4 // io.vertx.servicediscovery.Record announcedRecord
        13: .line 343
            return
        end local 3 // io.vertx.core.AsyncResult record
        end local 0 // io.vertx.servicediscovery.impl.DiscoveryImpl this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   14     0             this  Lio/vertx/servicediscovery/impl/DiscoveryImpl;
            0   14     3           record  Lio/vertx/core/AsyncResult<Lio/vertx/servicediscovery/Record;>;
            5    6     4         exporter  Lio/vertx/servicediscovery/spi/ServiceExporter;
            8   13     4  announcedRecord  Lio/vertx/servicediscovery/Record;

  private static java.lang.Boolean lambda$10(io.vertx.servicediscovery.Record);
    descriptor: (Lio/vertx/servicediscovery/Record;)Ljava/lang/Boolean;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.servicediscovery.Record r
         0: .line 353
            iconst_1
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            areturn
        end local 0 // io.vertx.servicediscovery.Record r
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     r  Lio/vertx/servicediscovery/Record;

  private static java.lang.Boolean lambda$11(io.vertx.core.json.JsonObject, io.vertx.servicediscovery.Record);
    descriptor: (Lio/vertx/core/json/JsonObject;Lio/vertx/servicediscovery/Record;)Ljava/lang/Boolean;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // io.vertx.servicediscovery.Record r
         0: .line 356
            aload 1 /* r */
            aload 0
            invokevirtual io.vertx.servicediscovery.Record.match:(Lio/vertx/core/json/JsonObject;)Z
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            areturn
        end local 1 // io.vertx.servicediscovery.Record r
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     1     r  Lio/vertx/servicediscovery/Record;

  private static void lambda$12(io.vertx.core.Handler, java.util.function.Function, boolean, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Ljava/util/function/Function;ZLio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=5, args_size=4
        start local 3 // io.vertx.core.AsyncResult list
         0: .line 372
            aload 3 /* list */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 3
         1: .line 373
            aload 0
            aload 3 /* list */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 374
            goto 12
         3: .line 375
      StackMap locals:
      StackMap stack:
            aload 3 /* list */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast java.util.List
            invokeinterface java.util.List.stream:()Ljava/util/stream/Stream;
         4: .line 376
            aload 1
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic test(Ljava/util/function/Function;)Ljava/util/function/Predicate;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Z
                  java/util/function/Function.apply(Ljava/lang/Object;)Ljava/lang/Object; (9 itf)
                  (Lio/vertx/servicediscovery/Record;)Z
            invokeinterface java.util.stream.Stream.filter:(Ljava/util/function/Predicate;)Ljava/util/stream/Stream;
         5: .line 377
            iload 2
            invokedynamic test(Z)Ljava/util/function/Predicate;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Z
                  io/vertx/servicediscovery/impl/DiscoveryImpl.lambda$14(ZLio/vertx/servicediscovery/Record;)Z (6)
                  (Lio/vertx/servicediscovery/Record;)Z
            invokeinterface java.util.stream.Stream.filter:(Ljava/util/function/Predicate;)Ljava/util/stream/Stream;
         6: .line 378
            invokeinterface java.util.stream.Stream.findAny:()Ljava/util/Optional;
         7: .line 375
            astore 4 /* any */
        start local 4 // java.util.Optional any
         8: .line 379
            aload 4 /* any */
            invokevirtual java.util.Optional.isPresent:()Z
            ifeq 11
         9: .line 380
            aload 0
            aload 4 /* any */
            invokevirtual java.util.Optional.get:()Ljava/lang/Object;
            checkcast io.vertx.servicediscovery.Record
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        10: .line 381
            goto 12
        11: .line 382
      StackMap locals: java.util.Optional
      StackMap stack:
            aload 0
            aconst_null
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        end local 4 // java.util.Optional any
        12: .line 385
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.vertx.core.AsyncResult list
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     3  list  Lio/vertx/core/AsyncResult<Ljava/util/List<Lio/vertx/servicediscovery/Record;>;>;
            8   12     4   any  Ljava/util/Optional<Lio/vertx/servicediscovery/Record;>;

  private static java.lang.Boolean lambda$15(io.vertx.servicediscovery.Record);
    descriptor: (Lio/vertx/servicediscovery/Record;)Ljava/lang/Boolean;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.servicediscovery.Record r
         0: .line 393
            iconst_1
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            areturn
        end local 0 // io.vertx.servicediscovery.Record r
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     r  Lio/vertx/servicediscovery/Record;

  private static java.lang.Boolean lambda$16(io.vertx.core.json.JsonObject, io.vertx.servicediscovery.Record);
    descriptor: (Lio/vertx/core/json/JsonObject;Lio/vertx/servicediscovery/Record;)Ljava/lang/Boolean;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // io.vertx.servicediscovery.Record r
         0: .line 396
            aload 1 /* r */
            aload 0
            invokevirtual io.vertx.servicediscovery.Record.match:(Lio/vertx/core/json/JsonObject;)Z
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            areturn
        end local 1 // io.vertx.servicediscovery.Record r
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     1     r  Lio/vertx/servicediscovery/Record;

  private static void lambda$17(io.vertx.core.Handler, java.util.function.Function, boolean, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Ljava/util/function/Function;ZLio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
        start local 3 // io.vertx.core.AsyncResult list
         0: .line 411
            aload 3 /* list */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 3
         1: .line 412
            aload 0
            aload 3 /* list */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 413
            goto 9
         3: .line 414
      StackMap locals:
      StackMap stack:
            aload 0
         4: .line 415
            aload 3 /* list */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast java.util.List
            invokeinterface java.util.List.stream:()Ljava/util/stream/Stream;
         5: .line 416
            aload 1
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic test(Ljava/util/function/Function;)Ljava/util/function/Predicate;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Z
                  java/util/function/Function.apply(Ljava/lang/Object;)Ljava/lang/Object; (9 itf)
                  (Lio/vertx/servicediscovery/Record;)Z
            invokeinterface java.util.stream.Stream.filter:(Ljava/util/function/Predicate;)Ljava/util/stream/Stream;
         6: .line 417
            iload 2
            invokedynamic test(Z)Ljava/util/function/Predicate;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Z
                  io/vertx/servicediscovery/impl/DiscoveryImpl.lambda$19(ZLio/vertx/servicediscovery/Record;)Z (6)
                  (Lio/vertx/servicediscovery/Record;)Z
            invokeinterface java.util.stream.Stream.filter:(Ljava/util/function/Predicate;)Ljava/util/stream/Stream;
         7: .line 418
            invokestatic java.util.stream.Collectors.toList:()Ljava/util/stream/Collector;
            invokeinterface java.util.stream.Stream.collect:(Ljava/util/stream/Collector;)Ljava/lang/Object;
            checkcast java.util.List
         8: .line 414
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         9: .line 421
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.vertx.core.AsyncResult list
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     3  list  Lio/vertx/core/AsyncResult<Ljava/util/List<Lio/vertx/servicediscovery/Record;>;>;

  private static void lambda$20(io.vertx.core.Handler, io.vertx.servicediscovery.Record, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/servicediscovery/Record;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=3
        start local 2 // io.vertx.core.AsyncResult ar
         0: .line 427
            aload 2 /* ar */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 3
         1: .line 428
            aload 0
            aload 2 /* ar */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 429
            goto 4
         3: .line 430
      StackMap locals:
      StackMap stack:
            aload 0
            aload 1
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         4: .line 432
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.AsyncResult ar
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     2    ar  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;

  private static boolean lambda$14(boolean, io.vertx.servicediscovery.Record);
    descriptor: (ZLio/vertx/servicediscovery/Record;)Z
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // io.vertx.servicediscovery.Record record
         0: .line 377
            iload 0
            ifne 1
            aload 1 /* record */
            invokevirtual io.vertx.servicediscovery.Record.getStatus:()Lio/vertx/servicediscovery/Status;
            getstatic io.vertx.servicediscovery.Status.UP:Lio/vertx/servicediscovery/Status;
            if_acmpeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 1 // io.vertx.servicediscovery.Record record
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     1  record  Lio/vertx/servicediscovery/Record;

  private static boolean lambda$19(boolean, io.vertx.servicediscovery.Record);
    descriptor: (ZLio/vertx/servicediscovery/Record;)Z
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // io.vertx.servicediscovery.Record record
         0: .line 417
            iload 0
            ifne 1
            aload 1 /* record */
            invokevirtual io.vertx.servicediscovery.Record.getStatus:()Lio/vertx/servicediscovery/Status;
            getstatic io.vertx.servicediscovery.Status.UP:Lio/vertx/servicediscovery/Status;
            if_acmpeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 1 // io.vertx.servicediscovery.Record record
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     1  record  Lio/vertx/servicediscovery/Record;
}
SourceFile: "DiscoveryImpl.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles