
com.google.pubsub.v1.ModifyAckDeadlineRequestOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/pubsub/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.
*
*
* optional string subscription = 1;
*/
java.lang.String getSubscription();
/**
*
* The name of the subscription.
*
*
* optional 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. Must be >= 0. 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.
*
*
* optional int32 ack_deadline_seconds = 3;
*/
int getAckDeadlineSeconds();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy