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 { }