io.axoniq.axonserver.grpc.event.RowResponseOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of axonserver-connector-java Show documentation
Show all versions of axonserver-connector-java Show documentation
Connector module providing infrastructure components that connect to AxonServer.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: event.proto
package io.axoniq.axonserver.grpc.event;
public interface RowResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:io.axoniq.axonserver.grpc.event.RowResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
* The values which, when combined, uniquely update this row. Any previously received values with the same identifiers should be replaced with this value
*
*
* repeated .io.axoniq.axonserver.grpc.event.QueryValue id_values = 1;
*/
java.util.List
getIdValuesList();
/**
*
* The values which, when combined, uniquely update this row. Any previously received values with the same identifiers should be replaced with this value
*
*
* repeated .io.axoniq.axonserver.grpc.event.QueryValue id_values = 1;
*/
io.axoniq.axonserver.grpc.event.QueryValue getIdValues(int index);
/**
*
* The values which, when combined, uniquely update this row. Any previously received values with the same identifiers should be replaced with this value
*
*
* repeated .io.axoniq.axonserver.grpc.event.QueryValue id_values = 1;
*/
int getIdValuesCount();
/**
*
* The values which, when combined, uniquely update this row. Any previously received values with the same identifiers should be replaced with this value
*
*
* repeated .io.axoniq.axonserver.grpc.event.QueryValue id_values = 1;
*/
java.util.List extends io.axoniq.axonserver.grpc.event.QueryValueOrBuilder>
getIdValuesOrBuilderList();
/**
*
* The values which, when combined, uniquely update this row. Any previously received values with the same identifiers should be replaced with this value
*
*
* repeated .io.axoniq.axonserver.grpc.event.QueryValue id_values = 1;
*/
io.axoniq.axonserver.grpc.event.QueryValueOrBuilder getIdValuesOrBuilder(
int index);
/**
*
* The sorting values to use when sorting this response compared to the others.
*
*
* repeated .io.axoniq.axonserver.grpc.event.QueryValue sort_values = 2;
*/
java.util.List
getSortValuesList();
/**
*
* The sorting values to use when sorting this response compared to the others.
*
*
* repeated .io.axoniq.axonserver.grpc.event.QueryValue sort_values = 2;
*/
io.axoniq.axonserver.grpc.event.QueryValue getSortValues(int index);
/**
*
* The sorting values to use when sorting this response compared to the others.
*
*
* repeated .io.axoniq.axonserver.grpc.event.QueryValue sort_values = 2;
*/
int getSortValuesCount();
/**
*
* The sorting values to use when sorting this response compared to the others.
*
*
* repeated .io.axoniq.axonserver.grpc.event.QueryValue sort_values = 2;
*/
java.util.List extends io.axoniq.axonserver.grpc.event.QueryValueOrBuilder>
getSortValuesOrBuilderList();
/**
*
* The sorting values to use when sorting this response compared to the others.
*
*
* repeated .io.axoniq.axonserver.grpc.event.QueryValue sort_values = 2;
*/
io.axoniq.axonserver.grpc.event.QueryValueOrBuilder getSortValuesOrBuilder(
int index);
/**
*
* The actual data values for each of the columns, as a column name -> value mapping
*
*
* map<string, .io.axoniq.axonserver.grpc.event.QueryValue> values = 3;
*/
int getValuesCount();
/**
*
* The actual data values for each of the columns, as a column name -> value mapping
*
*
* map<string, .io.axoniq.axonserver.grpc.event.QueryValue> values = 3;
*/
boolean containsValues(
java.lang.String key);
/**
* Use {@link #getValuesMap()} instead.
*/
@java.lang.Deprecated
java.util.Map
getValues();
/**
*
* The actual data values for each of the columns, as a column name -> value mapping
*
*
* map<string, .io.axoniq.axonserver.grpc.event.QueryValue> values = 3;
*/
java.util.Map
getValuesMap();
/**
*
* The actual data values for each of the columns, as a column name -> value mapping
*
*
* map<string, .io.axoniq.axonserver.grpc.event.QueryValue> values = 3;
*/
io.axoniq.axonserver.grpc.event.QueryValue getValuesOrDefault(
java.lang.String key,
io.axoniq.axonserver.grpc.event.QueryValue defaultValue);
/**
*
* The actual data values for each of the columns, as a column name -> value mapping
*
*
* map<string, .io.axoniq.axonserver.grpc.event.QueryValue> values = 3;
*/
io.axoniq.axonserver.grpc.event.QueryValue getValuesOrThrow(
java.lang.String key);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy