public interface CommandSubscriptionOrBuilder
extends com.google.protobuf.MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
String |
getClientId()
The unique identifier of the component instance subscribing
|
com.google.protobuf.ByteString |
getClientIdBytes()
The unique identifier of the component instance subscribing
|
String |
getCommand()
The name of the command the component can handle
|
com.google.protobuf.ByteString |
getCommandBytes()
The name of the command the component can handle
|
String |
getComponentName()
The name/type of the component handling the command
|
com.google.protobuf.ByteString |
getComponentNameBytes()
The name/type of the component handling the command
|
int |
getLoadFactor()
A number that represents the client's relative load capacity compared to other clients.
|
String |
getMessageId()
A unique identifier for this subscription.
|
com.google.protobuf.ByteString |
getMessageIdBytes()
A unique identifier for this subscription.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
String getMessageId()
A unique identifier for this subscription. This identifier is returned in Acknowledgements to allow pipelining of subscription messages
string message_id = 1;
com.google.protobuf.ByteString getMessageIdBytes()
A unique identifier for this subscription. This identifier is returned in Acknowledgements to allow pipelining of subscription messages
string message_id = 1;
String getCommand()
The name of the command the component can handle
string command = 2;
com.google.protobuf.ByteString getCommandBytes()
The name of the command the component can handle
string command = 2;
String getComponentName()
The name/type of the component handling the command
string component_name = 3;
com.google.protobuf.ByteString getComponentNameBytes()
The name/type of the component handling the command
string component_name = 3;
String getClientId()
The unique identifier of the component instance subscribing
string client_id = 4;
com.google.protobuf.ByteString getClientIdBytes()
The unique identifier of the component instance subscribing
string client_id = 4;
int getLoadFactor()
A number that represents the client's relative load capacity compared to other clients. This information is interpreted by Axon Server in relation to the other connected nodes' values. Used to balance the dispatching of commands. If set to 0, Axon Server consider 100 as default value.
int32 load_factor = 5;
Copyright © 2010–2020. All rights reserved.