com.healthy.common.websocket.distribute.MessageDistributor Maven / Gradle / Ivy
package com.healthy.common.websocket.distribute;
/**
* 消息分发器
*
* @author xm.z
*/
public interface MessageDistributor {
/**
* 消息分发
* @param messageDO 发送的消息
*/
void distribute(MessageDO messageDO);
}