Package s2.v1alpha
Interface ListStreamsRequestOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListStreamsRequest
,ListStreamsRequest.Builder
public interface ListStreamsRequestOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionlong
getLimit()
Number of results, up to a maximum of 1000.List stream names that begin with this prefix.com.google.protobuf.ByteString
List stream names that begin with this prefix.Only return stream names that lexicographically start after this name.com.google.protobuf.ByteString
Only return stream names that lexicographically start after this name.boolean
hasLimit()
Number of results, up to a maximum of 1000.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getPrefix
String getPrefix()List stream names that begin with this prefix.
string prefix = 1;
- Returns:
- The prefix.
-
getPrefixBytes
com.google.protobuf.ByteString getPrefixBytes()List stream names that begin with this prefix.
string prefix = 1;
- Returns:
- The bytes for prefix.
-
getStartAfter
String getStartAfter()Only return stream names that lexicographically start after this name. This can be the last stream name seen in a previous listing, to continue from there. It must be greater than or equal to the prefix if specified.
string start_after = 2;
- Returns:
- The startAfter.
-
getStartAfterBytes
com.google.protobuf.ByteString getStartAfterBytes()Only return stream names that lexicographically start after this name. This can be the last stream name seen in a previous listing, to continue from there. It must be greater than or equal to the prefix if specified.
string start_after = 2;
- Returns:
- The bytes for startAfter.
-
hasLimit
boolean hasLimit()Number of results, up to a maximum of 1000.
optional uint64 limit = 3;
- Returns:
- Whether the limit field is set.
-
getLimit
long getLimit()Number of results, up to a maximum of 1000.
optional uint64 limit = 3;
- Returns:
- The limit.
-