io.axoniq.axonserver.grpc.command.CommandOrBuilder 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 CommandOrBuilder extends
// @@protoc_insertion_point(interface_extends:io.axoniq.axonserver.grpc.command.Command)
com.google.protobuf.MessageOrBuilder {
/**
*
* The unique identifier of the Command Message
*
*
* string message_identifier = 1;
*/
java.lang.String getMessageIdentifier();
/**
*
* The unique identifier of the Command Message
*
*
* string message_identifier = 1;
*/
com.google.protobuf.ByteString
getMessageIdentifierBytes();
/**
*
* The name of the command, used for routing it to a destination capable of handling it
*
*
* string name = 2;
*/
java.lang.String getName();
/**
*
* The name of the command, used for routing it to a destination capable of handling it
*
*
* string name = 2;
*/
com.google.protobuf.ByteString
getNameBytes();
/**
*
* The time at which the command was dispatched
*
*
* int64 timestamp = 3;
*/
long getTimestamp();
/**
*
* The payload of the Command, providing details on the instructions for the recipient
*
*
* .io.axoniq.axonserver.grpc.SerializedObject payload = 4;
*/
boolean hasPayload();
/**
*
* The payload of the Command, providing details on the instructions for the recipient
*
*
* .io.axoniq.axonserver.grpc.SerializedObject payload = 4;
*/
io.axoniq.axonserver.grpc.SerializedObject getPayload();
/**
*
* The payload of the Command, providing details on the instructions for the recipient
*
*
* .io.axoniq.axonserver.grpc.SerializedObject payload = 4;
*/
io.axoniq.axonserver.grpc.SerializedObjectOrBuilder getPayloadOrBuilder();
/**
*
* Meta Data entries of the Command Message, providing contextual information to the recipient
*
*
* map<string, .io.axoniq.axonserver.grpc.MetaDataValue> meta_data = 5;
*/
int getMetaDataCount();
/**
*
* Meta Data entries of the Command Message, providing contextual information to the recipient
*
*
* 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();
/**
*
* Meta Data entries of the Command Message, providing contextual information to the recipient
*
*
* map<string, .io.axoniq.axonserver.grpc.MetaDataValue> meta_data = 5;
*/
java.util.Map
getMetaDataMap();
/**
*
* Meta Data entries of the Command Message, providing contextual information to the recipient
*
*
* 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);
/**
*
* Meta Data entries of the Command Message, providing contextual information to the recipient
*
*
* 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 Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
java.util.List
getProcessingInstructionsList();
/**
*
* Instructions for AxonServer when routing this Command 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 Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
int getProcessingInstructionsCount();
/**
*
* Instructions for AxonServer when routing this Command 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 Message
*
*
* repeated .io.axoniq.axonserver.grpc.ProcessingInstruction processing_instructions = 6;
*/
io.axoniq.axonserver.grpc.ProcessingInstructionOrBuilder getProcessingInstructionsOrBuilder(
int index);
/**
*
* The unique identifier of the component dispatching this message
*
*
* string client_id = 7;
*/
java.lang.String getClientId();
/**
*
* The unique identifier of the component dispatching this message
*
*
* string client_id = 7;
*/
com.google.protobuf.ByteString
getClientIdBytes();
/**
*
* The name/type of the component dispatching this message
*
*
* string component_name = 8;
*/
java.lang.String getComponentName();
/**
*
* The name/type of the component dispatching this message
*
*
* string component_name = 8;
*/
com.google.protobuf.ByteString
getComponentNameBytes();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy