grpc.cache_client.pubsub._PublishRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client-protos-jvm Show documentation
Show all versions of client-protos-jvm Show documentation
Kotlin protobuf protocols for the JVM that define the Momento gRPC wire format
// 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();
}