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