All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.rocketmq.common.protocol.heartbeat.MessageModel Maven / Gradle / Ivy

There is a newer version: 3.6.2.Final
Show newest version
/**
 * $Id: MessageModel.java 1835 2013-05-16 02:00:50Z shijia.wxr $
 */
package com.alibaba.rocketmq.common.protocol.heartbeat;

/**
 * Message model
 *
 * @author shijia.wxr
 */
public enum MessageModel {
    /**
     * broadcast
     */
    BROADCASTING("广播消费"),
    /**
     * clustering
     */
    CLUSTERING("集群消费");

    private String modeCN;

    MessageModel(String modeCN) {
        this.modeCN = modeCN;
    }


    public String getModeCN() {
        return modeCN;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy