Java Code Examples for org.apache.rocketmq.common.MixAll#RMQ_SYS_TRANS_OP_HALF_TOPIC

The following examples show how to use org.apache.rocketmq.common.MixAll#RMQ_SYS_TRANS_OP_HALF_TOPIC . 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: TransactionalMessageUtil.java    From rocketmq-4.3.0 with Apache License 2.0 4 votes vote down vote up
public static String buildOpTopic() {
    return MixAll.RMQ_SYS_TRANS_OP_HALF_TOPIC;
}
 
Example 2
Source File: TransactionalMessageUtil.java    From rocketmq-read with Apache License 2.0 2 votes vote down vote up
/**
 * 删除预处理消息(prepare),
 * 其实是将消息存储在主题为:RMQ_SYS_TRANS_OP_HALF_TOPIC的主题中,代表这些消息已经被处理(提交或回滚)
 * @return ;
 */
public static String buildOpTopic() {
    return MixAll.RMQ_SYS_TRANS_OP_HALF_TOPIC;
}