Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
0.5.0, 0.6
-
None
Description
In Stream class:
for (ProcessingElement pe : pes) {
pe.handleInputEvent(event);
}
It seems will cause problem if different PE share a same event object. Sometimes we only need change a attribute of the event and then sent it again. But in current version, if one PE changed the attribute of event, it will have impact on other PEs.