[
https://issues.apache.org/jira/browse/STREAMS-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14185191#comment-14185191
]
ASF GitHub Bot commented on STREAMS-199:
----------------------------------------
Github user robdouglas commented on a diff in the pull request:
https://github.com/apache/incubator-streams/pull/109#discussion_r19408344
--- Diff:
streams-runtimes/streams-runtime-local/src/main/java/org/apache/streams/local/tasks/StreamsProcessorTask.java
---
@@ -117,11 +119,15 @@ public void run() {
Thread.currentThread().interrupt();
}
if(datum != null) {
+ this.counter.incrementReceivedCount();
try {
+ long startTime = System.currentTimeMillis();
List<StreamsDatum> output =
this.processor.process(datum);
+ this.counter.addTime(System.currentTimeMillis() -
startTime);
if(output != null) {
for(StreamsDatum outDatum : output) {
super.addToOutgoingQueue(datum);
--- End diff --
I believe this was fixed in another pull request, it should be resolved
once Ryan merges master into this branch
> Implement new Changes to StreamTasks
> ------------------------------------
>
> Key: STREAMS-199
> URL: https://issues.apache.org/jira/browse/STREAMS-199
> Project: Streams
> Issue Type: Sub-task
> Reporter: Ryan Ebanks
>
> Implement new Changes to StreamTasks
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)