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

com.power4j.fist.message.queue.QueueWriter Maven / Gradle / Ivy

The newest version!
package com.power4j.fist.message.queue;

/**
 * @author CJ ([email protected])
 * @since 1.0
 */
public interface QueueWriter {

	/**
	 * Write data to queue
	 * @param channel channel name
	 * @param data the data
	 * @return true: write success; false: queue full
	 */
	 boolean write(String channel, T data);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy