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

com.alibaba.tmq.common.domain.UpdateMessage Maven / Gradle / Ivy

package com.alibaba.tmq.common.domain;

import java.util.Date;

/**
 * 更新消息
 * @author tianyao.myc
 *
 */
public class UpdateMessage extends Message {

	private static final long serialVersionUID = 8928494480370097798L;
	
	public UpdateMessage(String messageKey, String topic, Date fireTime) {
		super(messageKey, topic, fireTime);
	}
	
	public UpdateMessage(String messageKey, String topic, byte[] body) {
		super(messageKey, topic, body);
	}
	
	public UpdateMessage(String messageKey, String topic, String tag, Date fireTime, byte[] body) {
		super(messageKey, topic, tag, fireTime, body);
	}
	
	public UpdateMessage(String messageKey, String topic, String cronExpression) {
		super(messageKey, topic, cronExpression);
	}
	
	public UpdateMessage(String messageKey, String topic, String tag, String cronExpression, byte[] body) {
		super(messageKey, topic, tag, cronExpression, body);
	}
	
	public UpdateMessage(String messageKey, String topic, String tag, Date fireTime, byte[] body, String unitRoute) {
		super(messageKey, topic, tag, fireTime, body, unitRoute);
	}
	
	public UpdateMessage(String messageKey, String topic, String tag, String cronExpression, byte[] body, String unitRoute) {
		super(messageKey, topic, tag, cronExpression, body, unitRoute);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy