com.aliyun.drc.client.message.MessageStatusChecker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client Show documentation
Show all versions of client Show documentation
The core java client for accessing Data Transmission Service
package com.aliyun.drc.client.message;
import java.util.EnumMap;
/**
* 对DRC收到对消息进行检查
*/
public class MessageStatusChecker {
public enum StatusProperty{
DELAY_SESCONDS
}
public static EnumMap getStatusByMessage(DataMessage.Record record) {
System.out.println(record.toString());
return null;
}
public static EnumMap getStatusByMessage(DataMessage.Record record,long curTime) {
System.out.println(record.toString());
return null;
}
}