All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
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);
}
}