use of com.github.ashvina.common.TweetsGenerator in project streaming-samples by ashvina.
the class TweetSpout method open.
@Override
public void open(Map conf, TopologyContext context, SpoutOutputCollector collector) {
super.open(conf, context, collector);
this.collector = collector;
this.tweetsGenerator = new TweetsGenerator(tweetsFilePath);
}
Aggregations