Send feedback
Class PubsubMessage (0.16.0)
Stay organized with collections
Save and categorize content based on your preferences.
Version latest keyboard_arrow_down
public final class PubsubMessage extends GeneratedMessageV3 implements PubsubMessageOrBuilder
A message published to a topic.
Protobuf type google.events.cloud.pubsub.v1.PubsubMessage
Inherited Members
com.google.protobuf.GeneratedMessageV3.<ListT>makeMutableCopy(ListT)
com.google.protobuf.GeneratedMessageV3.<ListT>makeMutableCopy(ListT,int)
com.google.protobuf.GeneratedMessageV3.<T>emptyList(java.lang.Class<T>)
com.google.protobuf.GeneratedMessageV3.internalGetMapFieldReflection(int)
Static Fields
ATTRIBUTES_FIELD_NUMBER
public static final int ATTRIBUTES_FIELD_NUMBER
Field Value
Type
Description
int
DATA_FIELD_NUMBER
public static final int DATA_FIELD_NUMBER
Field Value
Type
Description
int
MESSAGE_ID_FIELD_NUMBER
public static final int MESSAGE_ID_FIELD_NUMBER
Field Value
Type
Description
int
ORDERING_KEY_FIELD_NUMBER
public static final int ORDERING_KEY_FIELD_NUMBER
Field Value
Type
Description
int
PUBLISH_TIME_FIELD_NUMBER
public static final int PUBLISH_TIME_FIELD_NUMBER
Field Value
Type
Description
int
Static Methods
getDefaultInstance()
public static PubsubMessage getDefaultInstance ()
getDescriptor()
public static final Descriptors . Descriptor getDescriptor ()
newBuilder()
public static PubsubMessage . Builder newBuilder ()
newBuilder(PubsubMessage prototype)
public static PubsubMessage . Builder newBuilder ( PubsubMessage prototype )
public static PubsubMessage parseDelimitedFrom ( InputStream input )
public static PubsubMessage parseDelimitedFrom ( InputStream input , ExtensionRegistryLite extensionRegistry )
parseFrom(byte[] data)
public static PubsubMessage parseFrom ( byte [] data )
Parameter
Name
Description
data
byte []
parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
public static PubsubMessage parseFrom ( byte [] data , ExtensionRegistryLite extensionRegistry )
parseFrom(ByteString data)
public static PubsubMessage parseFrom ( ByteString data )
parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
public static PubsubMessage parseFrom ( ByteString data , ExtensionRegistryLite extensionRegistry )
public static PubsubMessage parseFrom ( CodedInputStream input )
public static PubsubMessage parseFrom ( CodedInputStream input , ExtensionRegistryLite extensionRegistry )
public static PubsubMessage parseFrom ( InputStream input )
public static PubsubMessage parseFrom ( InputStream input , ExtensionRegistryLite extensionRegistry )
parseFrom(ByteBuffer data)
public static PubsubMessage parseFrom ( ByteBuffer data )
parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
public static PubsubMessage parseFrom ( ByteBuffer data , ExtensionRegistryLite extensionRegistry )
parser()
public static Parser<PubsubMessage> parser ()
Methods
containsAttributes(String key)
public boolean containsAttributes ( String key )
Attributes for this message.
map<string, string> attributes = 2;
Parameter
Name
Description
key
String
equals(Object obj)
public boolean equals ( Object obj )
Parameter
Name
Description
obj
Object
Overrides
getAttributes()
public Map<String , String > getAttributes ()
getAttributesCount()
public int getAttributesCount ()
Attributes for this message.
map<string, string> attributes = 2;
Returns
Type
Description
int
getAttributesMap()
public Map<String , String > getAttributesMap ()
Attributes for this message.
map<string, string> attributes = 2;
getAttributesOrDefault(String key, String defaultValue)
public String getAttributesOrDefault ( String key , String defaultValue )
Attributes for this message.
map<string, string> attributes = 2;
Returns
Type
Description
String
getAttributesOrThrow(String key)
public String getAttributesOrThrow ( String key )
Attributes for this message.
map<string, string> attributes = 2;
Parameter
Name
Description
key
String
Returns
Type
Description
String
getData()
public ByteString getData ()
The binary data in the message.
bytes data = 1;
getDefaultInstanceForType()
public PubsubMessage getDefaultInstanceForType ()
getMessageId()
public String getMessageId ()
ID of this message, assigned by the server when the message is published.
Guaranteed to be unique within the topic.
string message_id = 3;
Returns
Type
Description
String
The messageId.
getMessageIdBytes()
public ByteString getMessageIdBytes ()
ID of this message, assigned by the server when the message is published.
Guaranteed to be unique within the topic.
string message_id = 3;
Returns
Type
Description
ByteString
The bytes for messageId.
getOrderingKey()
public String getOrderingKey ()
If non-empty, identifies related messages for which publish order should be
respected.
string ordering_key = 5;
Returns
Type
Description
String
The orderingKey.
getOrderingKeyBytes()
public ByteString getOrderingKeyBytes ()
If non-empty, identifies related messages for which publish order should be
respected.
string ordering_key = 5;
Returns
Type
Description
ByteString
The bytes for orderingKey.
getParserForType()
public Parser<PubsubMessage> getParserForType ()
Overrides
getPublishTime()
public Timestamp getPublishTime ()
The time at which the message was published, populated by the server when
it receives the Publish
call.
.google.protobuf.Timestamp publish_time = 4;
Returns
Type
Description
Timestamp
The publishTime.
getPublishTimeOrBuilder()
public TimestampOrBuilder getPublishTimeOrBuilder ()
The time at which the message was published, populated by the server when
it receives the Publish
call.
.google.protobuf.Timestamp publish_time = 4;
getSerializedSize()
public int getSerializedSize ()
Returns
Type
Description
int
Overrides
getUnknownFields()
public final UnknownFieldSet getUnknownFields ()
Overrides
hasPublishTime()
public boolean hasPublishTime ()
The time at which the message was published, populated by the server when
it receives the Publish
call.
.google.protobuf.Timestamp publish_time = 4;
Returns
Type
Description
boolean
Whether the publishTime field is set.
hashCode()
Returns
Type
Description
int
Overrides
internalGetFieldAccessorTable()
protected GeneratedMessageV3 . FieldAccessorTable internalGetFieldAccessorTable ()
Overrides
internalGetMapField(int number)
protected MapField internalGetMapField ( int number )
Parameter
Name
Description
number
int
Overrides
isInitialized()
public final boolean isInitialized ()
Overrides
newBuilderForType()
public PubsubMessage . Builder newBuilderForType ()
newBuilderForType(GeneratedMessageV3.BuilderParent parent)
protected PubsubMessage . Builder newBuilderForType ( GeneratedMessageV3 . BuilderParent parent )
Overrides
newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
protected Object newInstance ( GeneratedMessageV3 . UnusedPrivateParameter unused )
Returns
Type
Description
Object
Overrides
toBuilder()
public PubsubMessage . Builder toBuilder ()
writeTo(CodedOutputStream output)
public void writeTo ( CodedOutputStream output )
Overrides
Send feedback
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-02-03 UTC.
Need to tell us more?
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-03 UTC."],[],[]]