package backtype.storm.messaging; import java.util.Map; import backtype.storm.utils.DisruptorQueue; /** * This interface needs to be implemented for messaging plugin. * * Messaging plugin is specified via Storm config parameter, * storm.messaging.transport. * * A messaging plugin should have a default constructor and implements IContext * interface. Upon construction, we will invoke IContext::prepare(storm_conf) to * enable context to be configured according to storm configuration. */ public interface IContext { /** * This method is invoked at the startup of messaging plugin * * @param storm_conf * storm configuration */ public void prepare(Map storm_conf); /** * This method is invoked when a worker is unload a messaging plugin */ public void term(); /** * This method establishes a server side connection * * @param topology_id * topology ID * @param port * port # * @param distribute * true -- receive other worker's data * @return server side connection */ public IConnection bind(String topology_id, int port); /** * This method establish a client side connection to a remote server * * @param topology_id * topology ID * @param host * remote host * @param port * remote port * @param distribute * true -- send other worker data * @return client side connection */ public IConnection connect(String topology_id, String host, int port); };