I wanted to test the parser without the concurrency. To my surprise the Events() method does not return any events. I suspect this is related to the issue in the comments of FastEvents() method:
// We have to create a copy here because otherwise cpc.EventsChan() fails
// I guess that because EventsChan takes a pointer to an object and that
// and thus the chan is taken on the pointer and since the object pointed
// changes -> kaboom
While it's not a major issue, it would still be nice to have the non-concurrent version of the parser available.
I wanted to test the parser without the concurrency. To my surprise the
Events()
method does not return any events. I suspect this is related to the issue in the comments ofFastEvents()
method:While it's not a major issue, it would still be nice to have the non-concurrent version of the parser available.