All Downloads are FREE. Search and download functionalities are using the official Maven repository.

grpc.cache_client.pubsub._SubscriptionRequestOrBuilder Maven / Gradle / Ivy

There is a newer version: 0.119.4
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: cachepubsub.proto

package grpc.cache_client.pubsub;

public interface _SubscriptionRequestOrBuilder extends
    // @@protoc_insertion_point(interface_extends:cache_client.pubsub._SubscriptionRequest)
    com.google.protobuf.MessageOrBuilder {

  /**
   * 
   * Cache namespace for the topic to which you want to subscribe.
   * 
* * string cache_name = 1; * @return The cacheName. */ java.lang.String getCacheName(); /** *
   * Cache namespace for the topic to which you want to subscribe.
   * 
* * string cache_name = 1; * @return The bytes for cacheName. */ com.google.protobuf.ByteString getCacheNameBytes(); /** *
   * The literal topic name to which you want to subscribe.
   * 
* * string topic = 2; * @return The topic. */ java.lang.String getTopic(); /** *
   * The literal topic name to which you want to subscribe.
   * 
* * string topic = 2; * @return The bytes for topic. */ com.google.protobuf.ByteString getTopicBytes(); /** *
   * --> Providing this is not required. <--
   *
   * If provided, attempt to reconnect to the topic and replay messages starting from
   * the provided sequence number. You may get a discontinuity if some (or all) of the
   * messages are not available.
   * If not provided (or 0), the subscription will begin with the latest messages.
   * 
* * uint64 resume_at_topic_sequence_number = 3; * @return The resumeAtTopicSequenceNumber. */ long getResumeAtTopicSequenceNumber(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy