blob: 54902ccd212340da3fce8f2e7956b464ce9e1a96 [file] [log] [blame]
package backtype.storm.spout;
import backtype.storm.generated.ShellComponent;
import backtype.storm.task.TopologyContext;
import java.util.Map;
public class ShellSpout implements ISpout {
public ShellSpout(ShellComponent component) {
}
public void open(Map conf, TopologyContext context, SpoutOutputCollector collector) {
throw new UnsupportedOperationException("Not supported yet.");
}
public void close() {
throw new UnsupportedOperationException("Not supported yet.");
}
public void nextTuple() {
throw new UnsupportedOperationException("Not supported yet.");
}
public void ack(Object msgId) {
throw new UnsupportedOperationException("Not supported yet.");
}
public void fail(Object msgId) {
throw new UnsupportedOperationException("Not supported yet.");
}
}