com.github.unclecatmyself.bootstrap.data.InChatToDataBaseService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of InChat Show documentation
Show all versions of InChat Show documentation
A lightweight, efficient communication framework that supports chat and the Internet of Things
The newest version!
package com.github.unclecatmyself.bootstrap.data;
import com.github.unclecatmyself.common.bean.InChatMessage;
import java.util.Map;
/**
* Created by MySelf on 2018/12/3.
*/
public interface InChatToDataBaseService {
Boolean writeMessage(InChatMessage message);
}