Skip to content
Snippets Groups Projects
Commit 1f82195d authored by Andrea Burattin's avatar Andrea Burattin
Browse files

Added missing onComplete

parent 5930e8f9
No related branches found
No related tags found
No related merge requests found
...@@ -91,6 +91,7 @@ public class CSVLogSource implements XesSource { ...@@ -91,6 +91,7 @@ public class CSVLogSource implements XesSource {
eventWrapper.add(newEvent); eventWrapper.add(newEvent);
emitter.onNext(eventWrapper); emitter.onNext(eventWrapper);
} }
emitter.onComplete();
} }
}); });
} }
......
...@@ -67,6 +67,7 @@ public class XesLogSource implements XesSource { ...@@ -67,6 +67,7 @@ public class XesLogSource implements XesSource {
for (XTrace wrapper : events) { for (XTrace wrapper : events) {
emitter.onNext(wrapper); emitter.onNext(wrapper);
} }
emitter.onComplete();
} }
}); });
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment