public interface ModifyAckDeadlineRequestOrBuilder
extends com.google.protobuf.MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
int |
getAckDeadlineSeconds()
The new ack deadline with respect to the time this request was sent to
the Pub/Sub system.
|
String |
getAckIds(int index)
List of acknowledgment IDs.
|
com.google.protobuf.ByteString |
getAckIdsBytes(int index)
List of acknowledgment IDs.
|
int |
getAckIdsCount()
List of acknowledgment IDs.
|
List<String> |
getAckIdsList()
List of acknowledgment IDs.
|
String |
getSubscription()
The name of the subscription.
|
com.google.protobuf.ByteString |
getSubscriptionBytes()
The name of the subscription.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
String getSubscription()
The name of the subscription. Format is `projects/{project}/subscriptions/{sub}`.
string subscription = 1;
com.google.protobuf.ByteString getSubscriptionBytes()
The name of the subscription. Format is `projects/{project}/subscriptions/{sub}`.
string subscription = 1;
int getAckIdsCount()
List of acknowledgment IDs.
repeated string ack_ids = 4;
String getAckIds(int index)
List of acknowledgment IDs.
repeated string ack_ids = 4;
com.google.protobuf.ByteString getAckIdsBytes(int index)
List of acknowledgment IDs.
repeated string ack_ids = 4;
int getAckDeadlineSeconds()
The new ack deadline with respect to the time this request was sent to the Pub/Sub system. For example, if the value is 10, the new ack deadline will expire 10 seconds after the `ModifyAckDeadline` call was made. Specifying zero may immediately make the message available for another pull request. The minimum deadline you can specify is 0 seconds. The maximum deadline you can specify is 600 seconds (10 minutes).
int32 ack_deadline_seconds = 3;
Copyright © 2018 Google LLC. All rights reserved.