Skip to content

Commit

Permalink
Merge branch 'master' of github.com:nathanmarz/storm-contrib
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Jackson committed Jan 9, 2013
2 parents 9727a04 + 041bef6 commit 2e8870f
Showing 1 changed file with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

import backtype.storm.spout.SpoutOutputCollector;
import backtype.storm.task.TopologyContext;
import backtype.storm.topology.IRichSpout;
import backtype.storm.topology.base.BaseRichSpout;
import backtype.storm.utils.Utils;

/**
Expand Down Expand Up @@ -51,7 +51,7 @@
* @author Adrian Petrescu <[email protected]>
*
*/
public abstract class SqsQueueSpout implements IRichSpout {
public abstract class SqsQueueSpout extends BaseRichSpout {
private SpoutOutputCollector collector;
private AmazonSQSAsync sqs;

Expand Down Expand Up @@ -177,9 +177,4 @@ public void close() {
((AmazonSQSAsyncClient) sqs).getExecutorService().shutdownNow();
}

@Override
public boolean isDistributed() {
return false;
}

}

0 comments on commit 2e8870f

Please sign in to comment.