backtype.storm.testing
Class BoltTracker

java.lang.Object
  extended by backtype.storm.testing.NonRichBoltTracker
      extended by backtype.storm.testing.BoltTracker
All Implemented Interfaces:
IBolt, IComponent, IRichBolt, java.io.Serializable

public class BoltTracker
extends NonRichBoltTracker
implements IRichBolt

See Also:
Serialized Form

Constructor Summary
BoltTracker(IRichBolt delegate, java.lang.String id)
           
 
Method Summary
 void declareOutputFields(OutputFieldsDeclarer declarer)
          Declare the output schema for all the streams of this topology.
 java.util.Map<java.lang.String,java.lang.Object> getComponentConfiguration()
          Declare configuration specific to this component.
 
Methods inherited from class backtype.storm.testing.NonRichBoltTracker
cleanup, execute, prepare
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface backtype.storm.task.IBolt
cleanup, execute, prepare
 

Constructor Detail

BoltTracker

public BoltTracker(IRichBolt delegate,
                   java.lang.String id)
Method Detail

declareOutputFields

public void declareOutputFields(OutputFieldsDeclarer declarer)
Description copied from interface: IComponent
Declare the output schema for all the streams of this topology.

Specified by:
declareOutputFields in interface IComponent
Parameters:
declarer - this is used to declare output stream ids, output fields, and whether or not each output stream is a direct stream

getComponentConfiguration

public java.util.Map<java.lang.String,java.lang.Object> getComponentConfiguration()
Description copied from interface: IComponent
Declare configuration specific to this component. Only a subset of the "topology.*" configs can be overridden. The component configuration can be further overridden when constructing the topology using TopologyBuilder

Specified by:
getComponentConfiguration in interface IComponent