com.power4j.fist.message.topic.TopicPublisher Maven / Gradle / Ivy
The newest version!
package com.power4j.fist.message.topic;
/**
* @author CJ ([email protected])
* @since 1.0
*/
public interface TopicPublisher {
/**
* publish msg
* @param channel channel name
* @param msg the msg
*/
void publish(String channel, Object msg);
}