org.enodeframework.queue.IMessageContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enode Show documentation
Show all versions of enode Show documentation
The enodeframework core implementation.
package org.enodeframework.queue;
public interface IMessageContext {
/**
* 消息处理后执行
*/
void onMessageHandled(QueueMessage message);
}