org.apache.bookkeeper.stream.proto.StreamPropertiesOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: stream.proto
package org.apache.bookkeeper.stream.proto;
public interface StreamPropertiesOrBuilder extends
// @@protoc_insertion_point(interface_extends:bookkeeper.proto.stream.StreamProperties)
com.google.protobuf.MessageOrBuilder {
/**
* int64 stream_id = 1;
* @return The streamId.
*/
long getStreamId();
/**
* int64 storage_container_id = 2;
* @return The storageContainerId.
*/
long getStorageContainerId();
/**
* string stream_name = 3;
* @return The streamName.
*/
java.lang.String getStreamName();
/**
* string stream_name = 3;
* @return The bytes for streamName.
*/
com.google.protobuf.ByteString
getStreamNameBytes();
/**
* .bookkeeper.proto.stream.StreamConfiguration stream_conf = 4;
* @return Whether the streamConf field is set.
*/
boolean hasStreamConf();
/**
* .bookkeeper.proto.stream.StreamConfiguration stream_conf = 4;
* @return The streamConf.
*/
org.apache.bookkeeper.stream.proto.StreamConfiguration getStreamConf();
/**
* .bookkeeper.proto.stream.StreamConfiguration stream_conf = 4;
*/
org.apache.bookkeeper.stream.proto.StreamConfigurationOrBuilder getStreamConfOrBuilder();
}