io.axoniq.axonserver.grpc.command.CommandResponseOrBuilder 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: command.proto
package io.axoniq.axonserver.grpc.command;
public interface CommandResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:io.axoniq.axonserver.grpc.command.CommandResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
* The unique identifier of the response message
*
*
* string message_identifier = 1;
*/
java.lang.String getMessageIdentifier();
/**
*
* The unique identifier of the response message
*
*
* string message_identifier = 1;
*/
com.google.protobuf.ByteString
getMessageIdentifierBytes();
/**
*
* An error code describing the error, if any
*
*
* string error_code = 2;
*/
java.lang.String getErrorCode();
/**
*
* An error code describing the error, if any
*
*
* string error_code = 2;
*/
com.google.protobuf.ByteString
getErrorCodeBytes();
/**
*
* A detailed description of the error
*
*
* .io.axoniq.axonserver.grpc.ErrorMessage error_message = 3;
*/
boolean hasErrorMessage();
/**
*
* A detailed description of the error
*
*
* .io.axoniq.axonserver.grpc.ErrorMessage error_message = 3;
*/
io.axoniq.axonserver.grpc.ErrorMessage getErrorMessage();
/**
*
* A detailed description of the error
*
*
* .io.axoniq.axonserver.grpc.ErrorMessage error_message = 3;
*/
io.axoniq.axonserver.grpc.ErrorMessageOrBuilder getErrorMessageOrBuilder();
/**
*
* The payload to provide as a result to the dispatcher
*
*
* .io.axoniq.axonserver.grpc.SerializedObject payload = 4;
*/
boolean hasPayload();
/**
*
* The payload to provide as a result to the dispatcher
*
*
* .io.axoniq.axonserver.grpc.SerializedObject payload = 4;
*/
io.axoniq.axonserver.grpc.SerializedObject getPayload();
/**
*
* The payload to provide as a result to the dispatcher
*
*
* .io.axoniq.axonserver.grpc.SerializedObject payload = 4;
*/
io.axoniq.axonserver.grpc.SerializedObjectOrBuilder getPayloadOrBuilder();
/**
*
* Any meta data entries providing contextual information back to the dispatcher
*
*
* map<string, .io.axoniq.axonserver.grpc.MetaDataValue> meta_data = 5;
*/
int getMetaDataCount();
/**
*
* Any meta data entries providing contextual information back to the dispatcher
*
*
* map<string, .io.axoniq.axonserver.grpc.MetaDataValue> meta_data = 5;
*/
boolean containsMetaData(
java.lang.String key);
/**
* Use {@link #getMetaDataMap()} instead.
*/
@java.lang.Deprecated
java.util.Map
getMetaData();
/**
*
* Any meta data entries providing contextual information back to the dispatcher
*
*
* map<string, .io.axoniq.axonserver.grpc.MetaDataValue> meta_data = 5;
*/
java.util.Map
getMetaDataMap();
/**
*
* Any meta data entries providing contextual information back to the dispatcher
*
*
* map<string, .io.axoniq.axonserver.grpc.MetaDataValue> meta_data = 5;
*/
io.axoniq.axonserver.grpc.MetaDataValue getMetaDataOrDefault(
java.lang.String key,
io.axoniq.axonserver.grpc.MetaDataValue defaultValue);
/**
*
* Any meta data entries providing contextual information back to the dispatcher
*
*
* map<string, .io.axoniq.axonserver.grpc.MetaDataValue> meta_data = 5;
*/
io.axoniq.axonserver.grpc.MetaDataValue getMetaDataOrThrow(
java.lang.String key);
/**
*
* Instructions for AxonServer when routing this Command Response Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
java.util.List
getProcessingInstructionsList();
/**
*
* Instructions for AxonServer when routing this Command Response Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
io.axoniq.axonserver.grpc.ProcessingInstruction getProcessingInstructions(int index);
/**
*
* Instructions for AxonServer when routing this Command Response Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
int getProcessingInstructionsCount();
/**
*
* Instructions for AxonServer when routing this Command Response Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
java.util.List extends io.axoniq.axonserver.grpc.ProcessingInstructionOrBuilder>
getProcessingInstructionsOrBuilderList();
/**
*
* Instructions for AxonServer when routing this Command Response Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
io.axoniq.axonserver.grpc.ProcessingInstructionOrBuilder getProcessingInstructionsOrBuilder(
int index);
/**
*
* The unique identifier of the Command Message for which this is the response
*
*
* string request_identifier = 7;
*/
java.lang.String getRequestIdentifier();
/**
*
* The unique identifier of the Command Message for which this is the response
*
*
* string request_identifier = 7;
*/
com.google.protobuf.ByteString
getRequestIdentifierBytes();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy