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

grpc.cache_client.pubsub._PublishRequestOrBuilder 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 _PublishRequestOrBuilder extends
    // @@protoc_insertion_point(interface_extends:cache_client.pubsub._PublishRequest)
    com.google.protobuf.MessageOrBuilder {

  /**
   * 
   * Cache namespace for the topic to which you want to send the value.
   * 
* * string cache_name = 1; * @return The cacheName. */ java.lang.String getCacheName(); /** *
   * Cache namespace for the topic to which you want to send the value.
   * 
* * string cache_name = 1; * @return The bytes for cacheName. */ com.google.protobuf.ByteString getCacheNameBytes(); /** *
   * The literal topic name to which you want to send the value.
   * 
* * string topic = 2; * @return The topic. */ java.lang.String getTopic(); /** *
   * The literal topic name to which you want to send the value.
   * 
* * string topic = 2; * @return The bytes for topic. */ com.google.protobuf.ByteString getTopicBytes(); /** *
   * The value you want to send to the topic. All current subscribers will receive
   * this, should the whims of the Internet prove merciful.
   * 
* * .cache_client.pubsub._TopicValue value = 3; * @return Whether the value field is set. */ boolean hasValue(); /** *
   * The value you want to send to the topic. All current subscribers will receive
   * this, should the whims of the Internet prove merciful.
   * 
* * .cache_client.pubsub._TopicValue value = 3; * @return The value. */ grpc.cache_client.pubsub._TopicValue getValue(); /** *
   * The value you want to send to the topic. All current subscribers will receive
   * this, should the whims of the Internet prove merciful.
   * 
* * .cache_client.pubsub._TopicValue value = 3; */ grpc.cache_client.pubsub._TopicValueOrBuilder getValueOrBuilder(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy