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

org.noear.water.dso.MessageHandler Maven / Gradle / Ivy

There is a newer version: 2.14.2
Show newest version
package org.noear.water.dso;

import org.noear.water.model.MessageM;

/**
 * 消息处理接口
 *
 * 

* @WaterMessage("test.hello") * public class TestMessage implements MessageHandler { * @Override * public boolean handle(MessageM msg) throws Throwable { * return true; * } * } *

* * @author noear * @since 2.0 * */ public interface MessageHandler { boolean handle(MessageM msg) throws Throwable; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy