Package ai.blip.deckard
Interface RemoveRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RemoveRequest,RemoveRequest.Builder
public interface RemoveRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetIds(int index)repeated string ids = 1;com.google.protobuf.ByteStringgetIdsBytes(int index)repeated string ids = 1;intgetIdsCount()repeated string ids = 1;List<String>getIdsList()repeated string ids = 1;StringgetQueue()Name of the queue to remove message Provide the name of the application as a prefix using colon as the separator.com.google.protobuf.ByteStringgetQueueBytes()Name of the queue to remove message Provide the name of the application as a prefix using colon as the separator.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getIdsCount
int getIdsCount()
repeated string ids = 1;- Returns:
- The count of ids.
-
getIds
String getIds(int index)
repeated string ids = 1;- Parameters:
index- The index of the element to return.- Returns:
- The ids at the given index.
-
getIdsBytes
com.google.protobuf.ByteString getIdsBytes(int index)
repeated string ids = 1;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the ids at the given index.
-
getQueue
String getQueue()
Name of the queue to remove message Provide the name of the application as a prefix using colon as the separator. Example: <application_name>:<queue_name>
string queue = 2;- Returns:
- The queue.
-
getQueueBytes
com.google.protobuf.ByteString getQueueBytes()
Name of the queue to remove message Provide the name of the application as a prefix using colon as the separator. Example: <application_name>:<queue_name>
string queue = 2;- Returns:
- The bytes for queue.
-
-