Package io.hstream.internal
Interface TrimShardsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TrimShardsResponse,TrimShardsResponse.Builder
public interface TrimShardsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsTrimPoints(long key)return map{shardId -> RecordId}, records before recordId(exclude) for each shard are all trimmedMap<Long,String>getTrimPoints()Deprecated.intgetTrimPointsCount()return map{shardId -> RecordId}, records before recordId(exclude) for each shard are all trimmedMap<Long,String>getTrimPointsMap()return map{shardId -> RecordId}, records before recordId(exclude) for each shard are all trimmedStringgetTrimPointsOrDefault(long key, String defaultValue)return map{shardId -> RecordId}, records before recordId(exclude) for each shard are all trimmedStringgetTrimPointsOrThrow(long key)return map{shardId -> RecordId}, records before recordId(exclude) for each shard are all trimmed-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTrimPointsCount
int getTrimPointsCount()
return map{shardId -> RecordId}, records before recordId(exclude) for each shard are all trimmedmap<uint64, string> trimPoints = 1;
-
containsTrimPoints
boolean containsTrimPoints(long key)
return map{shardId -> RecordId}, records before recordId(exclude) for each shard are all trimmedmap<uint64, string> trimPoints = 1;
-
getTrimPoints
@Deprecated Map<Long,String> getTrimPoints()
Deprecated.UsegetTrimPointsMap()instead.
-
getTrimPointsMap
Map<Long,String> getTrimPointsMap()
return map{shardId -> RecordId}, records before recordId(exclude) for each shard are all trimmedmap<uint64, string> trimPoints = 1;
-
getTrimPointsOrDefault
String getTrimPointsOrDefault(long key, String defaultValue)
return map{shardId -> RecordId}, records before recordId(exclude) for each shard are all trimmedmap<uint64, string> trimPoints = 1;
-
getTrimPointsOrThrow
String getTrimPointsOrThrow(long key)
return map{shardId -> RecordId}, records before recordId(exclude) for each shard are all trimmedmap<uint64, string> trimPoints = 1;
-
-