Java Code Examples for org.apache.pulsar.client.api.Message#hasProperty()
The following examples show how to use
org.apache.pulsar.client.api.Message#hasProperty() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: KafkaMessageRouter.java From pulsar with Apache License 2.0 | 5 votes |
@Override public int choosePartition(Message<?> msg, TopicMetadata metadata) { if (msg.hasProperty(PARTITION_ID)) { return Integer.parseInt(msg.getProperty(PARTITION_ID)); } else { return super.choosePartition(msg, metadata); } }
Example 2
Source File: KafkaMessageRouter.java From pulsar with Apache License 2.0 | 5 votes |
@Override public int choosePartition(Message<?> msg, TopicMetadata metadata) { if (msg.hasProperty(PARTITION_ID)) { return Integer.parseInt(msg.getProperty(PARTITION_ID)); } else { return super.choosePartition(msg, metadata); } }