grpc.cache_client.pubsub._TopicValueOrBuilder 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 _TopicValueOrBuilder extends
// @@protoc_insertion_point(interface_extends:cache_client.pubsub._TopicValue)
com.google.protobuf.MessageOrBuilder {
/**
* string text = 1;
* @return Whether the text field is set.
*/
boolean hasText();
/**
* string text = 1;
* @return The text.
*/
java.lang.String getText();
/**
* string text = 1;
* @return The bytes for text.
*/
com.google.protobuf.ByteString
getTextBytes();
/**
* bytes binary = 2;
* @return Whether the binary field is set.
*/
boolean hasBinary();
/**
* bytes binary = 2;
* @return The binary.
*/
com.google.protobuf.ByteString getBinary();
grpc.cache_client.pubsub._TopicValue.KindCase getKindCase();
}