com.google.pubsub.v1.ModifyAckDeadlineRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-pubsub-v1 Show documentation
Show all versions of proto-google-cloud-pubsub-v1 Show documentation
PROTO library for proto-google-cloud-pubsub-v1
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/pubsub/v1/pubsub.proto
package com.google.pubsub.v1;
public interface ModifyAckDeadlineRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.pubsub.v1.ModifyAckDeadlineRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* The name of the subscription.
* Format is `projects/{project}/subscriptions/{sub}`.
*
*
* string subscription = 1;
*/
java.lang.String getSubscription();
/**
*
* The name of the subscription.
* Format is `projects/{project}/subscriptions/{sub}`.
*
*
* string subscription = 1;
*/
com.google.protobuf.ByteString
getSubscriptionBytes();
/**
*
* List of acknowledgment IDs.
*
*
* repeated string ack_ids = 4;
*/
java.util.List
getAckIdsList();
/**
*
* List of acknowledgment IDs.
*
*
* repeated string ack_ids = 4;
*/
int getAckIdsCount();
/**
*
* List of acknowledgment IDs.
*
*
* repeated string ack_ids = 4;
*/
java.lang.String getAckIds(int index);
/**
*
* List of acknowledgment IDs.
*
*
* repeated string ack_ids = 4;
*/
com.google.protobuf.ByteString
getAckIdsBytes(int index);
/**
*
* 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;
*/
int getAckDeadlineSeconds();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy