class com.mongodb.internal.connection.GetMoreMessage extends com.mongodb.internal.connection.LegacyMessage
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.mongodb.internal.connection.GetMoreMessage
  super_class: com.mongodb.internal.connection.LegacyMessage
{
  private final long cursorId;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int numberToReturn;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(java.lang.String, long, int);
    descriptor: (Ljava/lang/String;JI)V
    flags: (0x0000) 
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // com.mongodb.internal.connection.GetMoreMessage this
        start local 1 // java.lang.String collectionName
        start local 2 // long cursorId
        start local 4 // int numberToReturn
         0: .line 31
            aload 0 /* this */
            aload 1 /* collectionName */
            getstatic com.mongodb.internal.connection.OpCode.OP_GETMORE:Lcom/mongodb/internal/connection/OpCode;
            invokestatic com.mongodb.internal.connection.MessageSettings.builder:()Lcom/mongodb/internal/connection/MessageSettings$Builder;
            invokevirtual com.mongodb.internal.connection.MessageSettings$Builder.build:()Lcom/mongodb/internal/connection/MessageSettings;
            invokespecial com.mongodb.internal.connection.LegacyMessage.<init>:(Ljava/lang/String;Lcom/mongodb/internal/connection/OpCode;Lcom/mongodb/internal/connection/MessageSettings;)V
         1: .line 32
            aload 0 /* this */
            lload 2 /* cursorId */
            putfield com.mongodb.internal.connection.GetMoreMessage.cursorId:J
         2: .line 33
            aload 0 /* this */
            iload 4 /* numberToReturn */
            putfield com.mongodb.internal.connection.GetMoreMessage.numberToReturn:I
         3: .line 34
            return
        end local 4 // int numberToReturn
        end local 2 // long cursorId
        end local 1 // java.lang.String collectionName
        end local 0 // com.mongodb.internal.connection.GetMoreMessage this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    4     0            this  Lcom/mongodb/internal/connection/GetMoreMessage;
            0    4     1  collectionName  Ljava/lang/String;
            0    4     2        cursorId  J
            0    4     4  numberToReturn  I
    MethodParameters:
                Name  Flags
      collectionName  final
      cursorId        final
      numberToReturn  final

  public long getCursorId();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.mongodb.internal.connection.GetMoreMessage this
         0: .line 42
            aload 0 /* this */
            getfield com.mongodb.internal.connection.GetMoreMessage.cursorId:J
            lreturn
        end local 0 // com.mongodb.internal.connection.GetMoreMessage this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/internal/connection/GetMoreMessage;

  protected com.mongodb.internal.connection.RequestMessage$EncodingMetadata encodeMessageBodyWithMetadata(org.bson.io.BsonOutput);
    descriptor: (Lorg/bson/io/BsonOutput;)Lcom/mongodb/internal/connection/RequestMessage$EncodingMetadata;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.mongodb.internal.connection.GetMoreMessage this
        start local 1 // org.bson.io.BsonOutput bsonOutput
         0: .line 47
            aload 0 /* this */
            aload 1 /* bsonOutput */
            invokevirtual com.mongodb.internal.connection.GetMoreMessage.writeGetMore:(Lorg/bson/io/BsonOutput;)V
         1: .line 48
            new com.mongodb.internal.connection.RequestMessage$EncodingMetadata
            dup
            aload 1 /* bsonOutput */
            invokeinterface org.bson.io.BsonOutput.getPosition:()I
            invokespecial com.mongodb.internal.connection.RequestMessage$EncodingMetadata.<init>:(I)V
            areturn
        end local 1 // org.bson.io.BsonOutput bsonOutput
        end local 0 // com.mongodb.internal.connection.GetMoreMessage this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lcom/mongodb/internal/connection/GetMoreMessage;
            0    2     1  bsonOutput  Lorg/bson/io/BsonOutput;
    MethodParameters:
            Name  Flags
      bsonOutput  final

  private void writeGetMore(org.bson.io.BsonOutput);
    descriptor: (Lorg/bson/io/BsonOutput;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.mongodb.internal.connection.GetMoreMessage this
        start local 1 // org.bson.io.BsonOutput buffer
         0: .line 52
            aload 1 /* buffer */
            iconst_0
            invokeinterface org.bson.io.BsonOutput.writeInt32:(I)V
         1: .line 53
            aload 1 /* buffer */
            aload 0 /* this */
            invokevirtual com.mongodb.internal.connection.GetMoreMessage.getCollectionName:()Ljava/lang/String;
            invokeinterface org.bson.io.BsonOutput.writeCString:(Ljava/lang/String;)V
         2: .line 54
            aload 1 /* buffer */
            aload 0 /* this */
            getfield com.mongodb.internal.connection.GetMoreMessage.numberToReturn:I
            invokeinterface org.bson.io.BsonOutput.writeInt32:(I)V
         3: .line 55
            aload 1 /* buffer */
            aload 0 /* this */
            getfield com.mongodb.internal.connection.GetMoreMessage.cursorId:J
            invokeinterface org.bson.io.BsonOutput.writeInt64:(J)V
         4: .line 56
            return
        end local 1 // org.bson.io.BsonOutput buffer
        end local 0 // com.mongodb.internal.connection.GetMoreMessage this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lcom/mongodb/internal/connection/GetMoreMessage;
            0    5     1  buffer  Lorg/bson/io/BsonOutput;
    MethodParameters:
        Name  Flags
      buffer  final
}
SourceFile: "GetMoreMessage.java"
InnerClasses:
  public final Builder = com.mongodb.internal.connection.MessageSettings$Builder of com.mongodb.internal.connection.MessageSettings
  EncodingMetadata = com.mongodb.internal.connection.RequestMessage$EncodingMetadata of com.mongodb.internal.connection.RequestMessage