-
I have a very large file with a lot of Extra information, I tried to swap the content of nodes to check whether the text has problems however the issue appeared on the second node again. Example node inside details, note that you can not reproduce the issue with the example. If you think that should not happen I can provide you with full file. <data encoding="base64"> |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Yes, that is expected behavior. Multiple consecutive At the cost of (a little) performance and memory you can combine adjacent |
Beta Was this translation helpful? Give feedback.
-
Thanks, it works. |
Beta Was this translation helpful? Give feedback.
Yes, that is expected behavior. Multiple consecutive
XmlTextEvent
might be crated based on the how the underlying stream is buffered. Most file/socket streams have some kind of buffering/chunking.At the cost of (a little) performance and memory you can combine adjacent
XmlTextEvent
using stream.normalizeEvents().