org.apache.storm.task.IOutputCollector Java Examples
The following examples show how to use
org.apache.storm.task.IOutputCollector.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: WindowedBoltExecutor.java From twister2 with Apache License 2.0 | 4 votes |
WindowedOutputCollector(IOutputCollector delegate) { super(delegate); }
Example #2
Source File: ComponentUtils.java From bullet-storm with Apache License 2.0 | 4 votes |
public static <T extends IRichBolt> T prepare(Map config, T bolt, TopologyContext context, IOutputCollector collector) { bolt.prepare(config, context, new OutputCollector(collector)); return bolt; }
Example #3
Source File: BasicOutputCollector.java From incubator-heron with Apache License 2.0 | 4 votes |
protected IOutputCollector getOutputter() { return out; }