arp.process.publish.ProcessMessageSender Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ARP Show documentation
Show all versions of ARP Show documentation
a java development framework with aggregation, repository and process
The newest version!
package arp.process.publish;
public interface ProcessMessageSender {
/**
* 具体实现要保证方法立即返回
*/
void send(Message msg) throws Exception;
}