me.chanjar.weixin.mp.api.WxMpMessageMatcher Maven / Gradle / Ivy
package me.chanjar.weixin.mp.api;
import me.chanjar.weixin.mp.bean.message.WxMpXmlMessage;
/**
* 消息匹配器,用在消息路由的时候
*/
public interface WxMpMessageMatcher {
/**
* 消息是否匹配某种模式
*
* @param message the message
* @return the boolean
*/
boolean match(WxMpXmlMessage message);
}