Package io.hstream.internal
Interface HStreamRecordHeaderOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
HStreamRecordHeader
,HStreamRecordHeader.Builder
public interface HStreamRecordHeaderOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
containsAttributes(String key)
Optional.Map<String,String>
getAttributes()
Deprecated.int
getAttributesCount()
Optional.Map<String,String>
getAttributesMap()
Optional.String
getAttributesOrDefault(String key, String defaultValue)
Optional.String
getAttributesOrThrow(String key)
Optional.HStreamRecordHeader.Flag
getFlag()
.hstream.server.HStreamRecordHeader.Flag flag = 1;
int
getFlagValue()
.hstream.server.HStreamRecordHeader.Flag flag = 1;
String
getKey()
Optional.com.google.protobuf.ByteString
getKeyBytes()
Optional.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getFlagValue
int getFlagValue()
.hstream.server.HStreamRecordHeader.Flag flag = 1;
- Returns:
- The enum numeric value on the wire for flag.
-
getFlag
HStreamRecordHeader.Flag getFlag()
.hstream.server.HStreamRecordHeader.Flag flag = 1;
- Returns:
- The flag.
-
getAttributesCount
int getAttributesCount()
Optional. Attributes attached to this record.
map<string, string> attributes = 2;
-
containsAttributes
boolean containsAttributes(String key)
Optional. Attributes attached to this record.
map<string, string> attributes = 2;
-
getAttributes
@Deprecated Map<String,String> getAttributes()
Deprecated.UsegetAttributesMap()
instead.
-
getAttributesMap
Map<String,String> getAttributesMap()
Optional. Attributes attached to this record.
map<string, string> attributes = 2;
-
getAttributesOrDefault
String getAttributesOrDefault(String key, String defaultValue)
Optional. Attributes attached to this record.
map<string, string> attributes = 2;
-
getAttributesOrThrow
String getAttributesOrThrow(String key)
Optional. Attributes attached to this record.
map<string, string> attributes = 2;
-
getKey
String getKey()
Optional. key for the message.
string key = 3;
- Returns:
- The key.
-
getKeyBytes
com.google.protobuf.ByteString getKeyBytes()
Optional. key for the message.
string key = 3;
- Returns:
- The bytes for key.
-
-