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

com.bell.mf.handler.MessageFrameRequest Maven / Gradle / Ivy

There is a newer version: 1.6.3.RELEASE
Show newest version
package com.bell.mf.handler;

import java.util.Date;

import com.bell.mf.IMessageFrame;

/**
 * MessageFrameRequest接口,封装请求参数
* {@link com.bell.mf.support.Dispatcher} * {@link com.bell.mf.support.handler.AbstractHandler} * @author bell.zhouxiaobing * @since 1.2 */ public interface MessageFrameRequest { /** * 解析过的消息帧 * @return */ IMessageFrame getMessageFrame(); /** * 设备uuid * @return */ String getDeviceId(); /** * 原始消息帧 * @return */ String getMessage(); /** * 系统时间 * @return */ Date getSystemDate(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy