
com.aerospike.vector.client.proto.PutRequestOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: transact.proto
// Protobuf Java Version: 3.25.5
package com.aerospike.vector.client.proto;
public interface PutRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:aerospike.vector.PutRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* The key for the record to insert/update
*
*
* .aerospike.vector.Key key = 1;
* @return Whether the key field is set.
*/
boolean hasKey();
/**
*
* The key for the record to insert/update
*
*
* .aerospike.vector.Key key = 1;
* @return The key.
*/
com.aerospike.vector.client.proto.Key getKey();
/**
*
* The key for the record to insert/update
*
*
* .aerospike.vector.Key key = 1;
*/
com.aerospike.vector.client.proto.KeyOrBuilder getKeyOrBuilder();
/**
*
* The type of the put/write request.
*
*
* .aerospike.vector.WriteType writeType = 2;
* @return The enum numeric value on the wire for writeType.
*/
int getWriteTypeValue();
/**
*
* The type of the put/write request.
*
*
* .aerospike.vector.WriteType writeType = 2;
* @return The writeType.
*/
com.aerospike.vector.client.proto.WriteType getWriteType();
/**
*
* The record fields.
*
*
* repeated .aerospike.vector.Field fields = 3;
*/
java.util.List
getFieldsList();
/**
*
* The record fields.
*
*
* repeated .aerospike.vector.Field fields = 3;
*/
com.aerospike.vector.client.proto.Field getFields(int index);
/**
*
* The record fields.
*
*
* repeated .aerospike.vector.Field fields = 3;
*/
int getFieldsCount();
/**
*
* The record fields.
*
*
* repeated .aerospike.vector.Field fields = 3;
*/
java.util.List extends com.aerospike.vector.client.proto.FieldOrBuilder>
getFieldsOrBuilderList();
/**
*
* The record fields.
*
*
* repeated .aerospike.vector.Field fields = 3;
*/
com.aerospike.vector.client.proto.FieldOrBuilder getFieldsOrBuilder(
int index);
/**
*
* Ignore the in-memory queue full error. These records would be written to
* storage and later, the index healer would pick for indexing.
*
*
* bool ignoreMemQueueFull = 4;
* @return The ignoreMemQueueFull.
*/
boolean getIgnoreMemQueueFull();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy