io.axoniq.axonserver.grpc.event.QueryEventsResponseOrBuilder 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 QueryEventsResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:io.axoniq.axonserver.grpc.event.QueryEventsResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
* Provided when the response contains the names of the columns the response contains. This message typically arrives first.
*
*
* .io.axoniq.axonserver.grpc.event.ColumnsResponse columns = 1;
*/
boolean hasColumns();
/**
*
* Provided when the response contains the names of the columns the response contains. This message typically arrives first.
*
*
* .io.axoniq.axonserver.grpc.event.ColumnsResponse columns = 1;
*/
io.axoniq.axonserver.grpc.event.ColumnsResponse getColumns();
/**
*
* Provided when the response contains the names of the columns the response contains. This message typically arrives first.
*
*
* .io.axoniq.axonserver.grpc.event.ColumnsResponse columns = 1;
*/
io.axoniq.axonserver.grpc.event.ColumnsResponseOrBuilder getColumnsOrBuilder();
/**
*
* Provided when the response message contains results of the Query
*
*
* .io.axoniq.axonserver.grpc.event.RowResponse row = 2;
*/
boolean hasRow();
/**
*
* Provided when the response message contains results of the Query
*
*
* .io.axoniq.axonserver.grpc.event.RowResponse row = 2;
*/
io.axoniq.axonserver.grpc.event.RowResponse getRow();
/**
*
* Provided when the response message contains results of the Query
*
*
* .io.axoniq.axonserver.grpc.event.RowResponse row = 2;
*/
io.axoniq.axonserver.grpc.event.RowResponseOrBuilder getRowOrBuilder();
/**
*
* Provided when all historic events have been included in the query results
*
*
* .io.axoniq.axonserver.grpc.event.Confirmation files_completed = 3;
*/
boolean hasFilesCompleted();
/**
*
* Provided when all historic events have been included in the query results
*
*
* .io.axoniq.axonserver.grpc.event.Confirmation files_completed = 3;
*/
io.axoniq.axonserver.grpc.event.Confirmation getFilesCompleted();
/**
*
* Provided when all historic events have been included in the query results
*
*
* .io.axoniq.axonserver.grpc.event.Confirmation files_completed = 3;
*/
io.axoniq.axonserver.grpc.event.ConfirmationOrBuilder getFilesCompletedOrBuilder();
public io.axoniq.axonserver.grpc.event.QueryEventsResponse.DataCase getDataCase();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy