public class io.vertx.ext.stomp.impl.Transactions
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.stomp.impl.Transactions
  super_class: java.lang.Object
{
  private static final io.vertx.ext.stomp.impl.Transactions INSTANCE;
    descriptor: Lio/vertx/ext/stomp/impl/Transactions;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final java.util.List<io.vertx.ext.stomp.impl.Transaction> transactions;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lio/vertx/ext/stomp/impl/Transaction;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 33
            new io.vertx.ext.stomp.impl.Transactions
            dup
            invokespecial io.vertx.ext.stomp.impl.Transactions.<init>:()V
            putstatic io.vertx.ext.stomp.impl.Transactions.INSTANCE:Lio/vertx/ext/stomp/impl/Transactions;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static io.vertx.ext.stomp.impl.Transactions instance();
    descriptor: ()Lio/vertx/ext/stomp/impl/Transactions;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 38
            getstatic io.vertx.ext.stomp.impl.Transactions.INSTANCE:Lio/vertx/ext/stomp/impl/Transactions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.ext.stomp.impl.Transactions this
         0: .line 41
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 35
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield io.vertx.ext.stomp.impl.Transactions.transactions:Ljava/util/List;
         2: .line 43
            return
        end local 0 // io.vertx.ext.stomp.impl.Transactions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/stomp/impl/Transactions;

  public synchronized io.vertx.ext.stomp.impl.Transaction getTransaction(io.vertx.ext.stomp.StompServerConnection, java.lang.String);
    descriptor: (Lio/vertx/ext/stomp/StompServerConnection;Ljava/lang/String;)Lio/vertx/ext/stomp/impl/Transaction;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.ext.stomp.impl.Transactions this
        start local 1 // io.vertx.ext.stomp.StompServerConnection connection
        start local 2 // java.lang.String txId
         0: .line 53
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.Transactions.transactions:Ljava/util/List;
            invokeinterface java.util.List.stream:()Ljava/util/stream/Stream;
         1: .line 54
            aload 1 /* connection */
            aload 2 /* txId */
            invokedynamic test(Lio/vertx/ext/stomp/StompServerConnection;Ljava/lang/String;)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/ext/stomp/impl/Transactions.lambda$0(Lio/vertx/ext/stomp/StompServerConnection;Ljava/lang/String;Lio/vertx/ext/stomp/impl/Transaction;)Z (6)
                  (Lio/vertx/ext/stomp/impl/Transaction;)Z
            invokeinterface java.util.stream.Stream.filter:(Ljava/util/function/Predicate;)Ljava/util/stream/Stream;
         2: .line 55
            invokeinterface java.util.stream.Stream.findFirst:()Ljava/util/Optional;
            aconst_null
            invokevirtual java.util.Optional.orElse:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.vertx.ext.stomp.impl.Transaction
         3: .line 53
            areturn
        end local 2 // java.lang.String txId
        end local 1 // io.vertx.ext.stomp.StompServerConnection connection
        end local 0 // io.vertx.ext.stomp.impl.Transactions this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lio/vertx/ext/stomp/impl/Transactions;
            0    4     1  connection  Lio/vertx/ext/stomp/StompServerConnection;
            0    4     2        txId  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      connection  
      txId        

  public synchronized boolean registerTransaction(io.vertx.ext.stomp.StompServerConnection, java.lang.String);
    descriptor: (Lio/vertx/ext/stomp/StompServerConnection;Ljava/lang/String;)Z
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // io.vertx.ext.stomp.impl.Transactions this
        start local 1 // io.vertx.ext.stomp.StompServerConnection connection
        start local 2 // java.lang.String txId
         0: .line 67
            aload 0 /* this */
            aload 1 /* connection */
            aload 2 /* txId */
            invokevirtual io.vertx.ext.stomp.impl.Transactions.getTransaction:(Lio/vertx/ext/stomp/StompServerConnection;Ljava/lang/String;)Lio/vertx/ext/stomp/impl/Transaction;
            ifnull 2
         1: .line 68
            iconst_0
            ireturn
         2: .line 70
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.Transactions.transactions:Ljava/util/List;
            new io.vertx.ext.stomp.impl.Transaction
            dup
            aload 1 /* connection */
            aload 2 /* txId */
            invokespecial io.vertx.ext.stomp.impl.Transaction.<init>:(Lio/vertx/ext/stomp/StompServerConnection;Ljava/lang/String;)V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         3: .line 71
            iconst_1
            ireturn
        end local 2 // java.lang.String txId
        end local 1 // io.vertx.ext.stomp.StompServerConnection connection
        end local 0 // io.vertx.ext.stomp.impl.Transactions this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lio/vertx/ext/stomp/impl/Transactions;
            0    4     1  connection  Lio/vertx/ext/stomp/StompServerConnection;
            0    4     2        txId  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      connection  
      txId        

  public synchronized boolean unregisterTransaction(io.vertx.ext.stomp.StompServerConnection, java.lang.String);
    descriptor: (Lio/vertx/ext/stomp/StompServerConnection;Ljava/lang/String;)Z
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.vertx.ext.stomp.impl.Transactions this
        start local 1 // io.vertx.ext.stomp.StompServerConnection connection
        start local 2 // java.lang.String id
         0: .line 82
            aload 0 /* this */
            aload 1 /* connection */
            aload 2 /* id */
            invokevirtual io.vertx.ext.stomp.impl.Transactions.getTransaction:(Lio/vertx/ext/stomp/StompServerConnection;Ljava/lang/String;)Lio/vertx/ext/stomp/impl/Transaction;
            astore 3 /* transaction */
        start local 3 // io.vertx.ext.stomp.impl.Transaction transaction
         1: .line 83
            aload 3 /* transaction */
            ifnull 2
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.Transactions.transactions:Ljava/util/List;
            aload 3 /* transaction */
            invokeinterface java.util.List.remove:(Ljava/lang/Object;)Z
            ifeq 2
            iconst_1
            ireturn
      StackMap locals: io.vertx.ext.stomp.impl.Transaction
      StackMap stack:
         2: iconst_0
            ireturn
        end local 3 // io.vertx.ext.stomp.impl.Transaction transaction
        end local 2 // java.lang.String id
        end local 1 // io.vertx.ext.stomp.StompServerConnection connection
        end local 0 // io.vertx.ext.stomp.impl.Transactions this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lio/vertx/ext/stomp/impl/Transactions;
            0    3     1   connection  Lio/vertx/ext/stomp/StompServerConnection;
            0    3     2           id  Ljava/lang/String;
            1    3     3  transaction  Lio/vertx/ext/stomp/impl/Transaction;
    MethodParameters:
            Name  Flags
      connection  
      id          

  public synchronized void unregisterTransactionsFromConnection(io.vertx.ext.stomp.StompServerConnection);
    descriptor: (Lio/vertx/ext/stomp/StompServerConnection;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.ext.stomp.impl.Transactions this
        start local 1 // io.vertx.ext.stomp.StompServerConnection connection
         0: .line 92
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.Transactions.transactions:Ljava/util/List;
            invokeinterface java.util.List.stream:()Ljava/util/stream/Stream;
         1: .line 93
            aload 1 /* connection */
            invokedynamic test(Lio/vertx/ext/stomp/StompServerConnection;)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/ext/stomp/impl/Transactions.lambda$1(Lio/vertx/ext/stomp/StompServerConnection;Lio/vertx/ext/stomp/impl/Transaction;)Z (6)
                  (Lio/vertx/ext/stomp/impl/Transaction;)Z
            invokeinterface java.util.stream.Stream.filter:(Ljava/util/function/Predicate;)Ljava/util/stream/Stream;
         2: .line 94
            invokeinterface java.util.stream.Stream.sorted:()Ljava/util/stream/Stream;
         3: .line 95
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.Transactions.transactions:Ljava/util/List;
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic accept(Ljava/util/List;)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
                  java/util/List.remove(Ljava/lang/Object;)Z (9 itf)
                  (Lio/vertx/ext/stomp/impl/Transaction;)V
            invokeinterface java.util.stream.Stream.forEach:(Ljava/util/function/Consumer;)V
         4: .line 96
            return
        end local 1 // io.vertx.ext.stomp.StompServerConnection connection
        end local 0 // io.vertx.ext.stomp.impl.Transactions this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lio/vertx/ext/stomp/impl/Transactions;
            0    5     1  connection  Lio/vertx/ext/stomp/StompServerConnection;
    MethodParameters:
            Name  Flags
      connection  

  public synchronized int getTransactionCount();
    descriptor: ()I
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.stomp.impl.Transactions this
         0: .line 104
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.Transactions.transactions:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            ireturn
        end local 0 // io.vertx.ext.stomp.impl.Transactions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/stomp/impl/Transactions;

  private static boolean lambda$0(io.vertx.ext.stomp.StompServerConnection, java.lang.String, io.vertx.ext.stomp.impl.Transaction);
    descriptor: (Lio/vertx/ext/stomp/StompServerConnection;Ljava/lang/String;Lio/vertx/ext/stomp/impl/Transaction;)Z
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=3
        start local 2 // io.vertx.ext.stomp.impl.Transaction t
         0: .line 54
            aload 2 /* t */
            invokevirtual io.vertx.ext.stomp.impl.Transaction.connection:()Lio/vertx/ext/stomp/StompServerConnection;
            aload 0
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 1
            aload 2 /* t */
            invokevirtual io.vertx.ext.stomp.impl.Transaction.id:()Ljava/lang/String;
            aload 1
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 2 // io.vertx.ext.stomp.impl.Transaction t
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     2     t  Lio/vertx/ext/stomp/impl/Transaction;

  private static boolean lambda$1(io.vertx.ext.stomp.StompServerConnection, io.vertx.ext.stomp.impl.Transaction);
    descriptor: (Lio/vertx/ext/stomp/StompServerConnection;Lio/vertx/ext/stomp/impl/Transaction;)Z
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // io.vertx.ext.stomp.impl.Transaction transaction
         0: .line 93
            aload 1 /* transaction */
            invokevirtual io.vertx.ext.stomp.impl.Transaction.connection:()Lio/vertx/ext/stomp/StompServerConnection;
            aload 0
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // io.vertx.ext.stomp.impl.Transaction transaction
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     1  transaction  Lio/vertx/ext/stomp/impl/Transaction;
}
SourceFile: "Transactions.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles