Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,19 @@
@DefaultSchema(AutoValueSchema.class)
@AutoValue
public abstract class PulsarMessage {
abstract @Nullable String getTopic();
public abstract @Nullable String getTopic();

abstract long getPublishTimestamp();
public abstract long getPublishTimestamp();

abstract @Nullable String getKey();
public abstract @Nullable String getKey();

@SuppressWarnings("mutable")
abstract byte[] getValue();
public abstract byte[] getValue();

abstract @Nullable Map<String, String> getProperties();
public abstract @Nullable Map<String, String> getProperties();

@SuppressWarnings("mutable")
abstract byte[] getMessageId();
public abstract byte[] getMessageId();

public static PulsarMessage create(
@Nullable String topicName,
Expand Down
Loading