public abstract class com.mongodb.event.CommandEvent
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: com.mongodb.event.CommandEvent
  super_class: java.lang.Object
{
  private final int requestId;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final com.mongodb.connection.ConnectionDescription connectionDescription;
    descriptor: Lcom/mongodb/connection/ConnectionDescription;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  public void <init>(int, com.mongodb.connection.ConnectionDescription, java.lang.String);
    descriptor: (ILcom/mongodb/connection/ConnectionDescription;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // com.mongodb.event.CommandEvent this
        start local 1 // int requestId
        start local 2 // com.mongodb.connection.ConnectionDescription connectionDescription
        start local 3 // java.lang.String commandName
         0: .line 37
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 39
            aload 0 /* this */
            iload 1 /* requestId */
            putfield com.mongodb.event.CommandEvent.requestId:I
         2: .line 40
            aload 0 /* this */
            aload 2 /* connectionDescription */
            putfield com.mongodb.event.CommandEvent.connectionDescription:Lcom/mongodb/connection/ConnectionDescription;
         3: .line 41
            aload 0 /* this */
            aload 3 /* commandName */
            putfield com.mongodb.event.CommandEvent.commandName:Ljava/lang/String;
         4: .line 42
            return
        end local 3 // java.lang.String commandName
        end local 2 // com.mongodb.connection.ConnectionDescription connectionDescription
        end local 1 // int requestId
        end local 0 // com.mongodb.event.CommandEvent this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    5     0                   this  Lcom/mongodb/event/CommandEvent;
            0    5     1              requestId  I
            0    5     2  connectionDescription  Lcom/mongodb/connection/ConnectionDescription;
            0    5     3            commandName  Ljava/lang/String;
    MethodParameters:
                       Name  Flags
      requestId              final
      connectionDescription  final
      commandName            final

  public int getRequestId();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.event.CommandEvent this
         0: .line 50
            aload 0 /* this */
            getfield com.mongodb.event.CommandEvent.requestId:I
            ireturn
        end local 0 // com.mongodb.event.CommandEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/event/CommandEvent;

  public com.mongodb.connection.ConnectionDescription getConnectionDescription();
    descriptor: ()Lcom/mongodb/connection/ConnectionDescription;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.event.CommandEvent this
         0: .line 59
            aload 0 /* this */
            getfield com.mongodb.event.CommandEvent.connectionDescription:Lcom/mongodb/connection/ConnectionDescription;
            areturn
        end local 0 // com.mongodb.event.CommandEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/event/CommandEvent;

  public java.lang.String getCommandName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.event.CommandEvent this
         0: .line 68
            aload 0 /* this */
            getfield com.mongodb.event.CommandEvent.commandName:Ljava/lang/String;
            areturn
        end local 0 // com.mongodb.event.CommandEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/event/CommandEvent;
}
SourceFile: "CommandEvent.java"