Package io.hstream.internal
Interface ReadStreamRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ReadStreamRequest
,ReadStreamRequest.Builder
public interface ReadStreamRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StreamOffset
getFrom()
.hstream.server.StreamOffset from = 3;
StreamOffsetOrBuilder
getFromOrBuilder()
.hstream.server.StreamOffset from = 3;
long
getMaxReadBatches()
Total number of batches reader read at mostString
getReaderId()
string readerId = 1;
com.google.protobuf.ByteString
getReaderIdBytes()
string readerId = 1;
String
getStreamName()
string streamName = 2;
com.google.protobuf.ByteString
getStreamNameBytes()
string streamName = 2;
StreamOffset
getUntil()
.hstream.server.StreamOffset until = 4;
StreamOffsetOrBuilder
getUntilOrBuilder()
.hstream.server.StreamOffset until = 4;
boolean
hasFrom()
.hstream.server.StreamOffset from = 3;
boolean
hasUntil()
.hstream.server.StreamOffset until = 4;
-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getReaderId
String getReaderId()
string readerId = 1;
- Returns:
- The readerId.
-
getReaderIdBytes
com.google.protobuf.ByteString getReaderIdBytes()
string readerId = 1;
- Returns:
- The bytes for readerId.
-
getStreamName
String getStreamName()
string streamName = 2;
- Returns:
- The streamName.
-
getStreamNameBytes
com.google.protobuf.ByteString getStreamNameBytes()
string streamName = 2;
- Returns:
- The bytes for streamName.
-
hasFrom
boolean hasFrom()
.hstream.server.StreamOffset from = 3;
- Returns:
- Whether the from field is set.
-
getFrom
StreamOffset getFrom()
.hstream.server.StreamOffset from = 3;
- Returns:
- The from.
-
getFromOrBuilder
StreamOffsetOrBuilder getFromOrBuilder()
.hstream.server.StreamOffset from = 3;
-
hasUntil
boolean hasUntil()
.hstream.server.StreamOffset until = 4;
- Returns:
- Whether the until field is set.
-
getUntil
StreamOffset getUntil()
.hstream.server.StreamOffset until = 4;
- Returns:
- The until.
-
getUntilOrBuilder
StreamOffsetOrBuilder getUntilOrBuilder()
.hstream.server.StreamOffset until = 4;
-
getMaxReadBatches
long getMaxReadBatches()
Total number of batches reader read at most
uint64 maxReadBatches = 5;
- Returns:
- The maxReadBatches.
-
-