Github user satishd commented on a diff in the pull request: https://github.com/apache/storm/pull/2241#discussion_r129517427 --- Diff: storm-client/src/jvm/org/apache/storm/task/IOutputCollector.java --- @@ -30,4 +31,5 @@ void ack(Tuple input); void fail(Tuple input); void resetTimeout(Tuple input); + void flush(); --- End diff -- It is kind of external facing API as it is given to bolt implementors in prepare [API](https://github.com/apache/storm/blob/master/storm-client/src/jvm/org/apache/storm/task/IBolt.java#L55). `IOutputCollector` can be wrapped by users to do any custom processing before they are emitted to target tasks.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---