Interface Protocol.SuspensionMessageOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Protocol.SuspensionMessage,Protocol.SuspensionMessage.Builder
- Enclosing class:
- Protocol
public static interface Protocol.SuspensionMessageOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetEntryIndexes(int index)This list represents any of the entry_index the invocation is waiting on to progress.intgetEntryIndexesCount()This list represents any of the entry_index the invocation is waiting on to progress.java.util.List<java.lang.Integer>getEntryIndexesList()This list represents any of the entry_index the invocation is waiting on to progress.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getEntryIndexesList
java.util.List<java.lang.Integer> getEntryIndexesList()
This list represents any of the entry_index the invocation is waiting on to progress. The runtime will resume the invocation as soon as one of the given entry_index is completed. This list MUST not be empty. False positive, entry_indexes is a valid plural of entry_indices. https://learn.microsoft.com/en-us/style-guide/a-z-word-list-term-collections/i/index-indexes-indices
repeated uint32 entry_indexes = 1;- Returns:
- A list containing the entryIndexes.
-
getEntryIndexesCount
int getEntryIndexesCount()
This list represents any of the entry_index the invocation is waiting on to progress. The runtime will resume the invocation as soon as one of the given entry_index is completed. This list MUST not be empty. False positive, entry_indexes is a valid plural of entry_indices. https://learn.microsoft.com/en-us/style-guide/a-z-word-list-term-collections/i/index-indexes-indices
repeated uint32 entry_indexes = 1;- Returns:
- The count of entryIndexes.
-
getEntryIndexes
int getEntryIndexes(int index)
This list represents any of the entry_index the invocation is waiting on to progress. The runtime will resume the invocation as soon as one of the given entry_index is completed. This list MUST not be empty. False positive, entry_indexes is a valid plural of entry_indices. https://learn.microsoft.com/en-us/style-guide/a-z-word-list-term-collections/i/index-indexes-indices
repeated uint32 entry_indexes = 1;- Parameters:
index- The index of the element to return.- Returns:
- The entryIndexes at the given index.
-
-