backtype.storm.clojure
Class RichShellBolt

java.lang.Object
  extended by backtype.storm.task.ShellBolt
      extended by backtype.storm.clojure.RichShellBolt
All Implemented Interfaces:
IBolt, IComponent, IRichBolt, java.io.Serializable

public class RichShellBolt
extends ShellBolt
implements IRichBolt

See Also:
Serialized Form

Field Summary
 
Fields inherited from class backtype.storm.task.ShellBolt
LOG
 
Constructor Summary
RichShellBolt(java.lang.String[] command, java.util.Map<java.lang.String,StreamInfo> outputs)
           
 
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.task.ShellBolt
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

RichShellBolt

public RichShellBolt(java.lang.String[] command,
                     java.util.Map<java.lang.String,StreamInfo> outputs)
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