blob: 5ee0a8ab72dfa914deb6deb082bfd0c60e11851e [file] [log] [blame]
package backtype.storm.topology;
import backtype.storm.spout.ISpout;
/**
* When writing topologies using Java, {@link IRichBolt} and {@link IRichSpout} are the main interfaces
* to use to implement components of the topology.
*
*/
public interface IRichSpout extends ISpout, IComponent {
}