Can I use the Scala parser framework to parse a stream of events supplied to the parser in push mode (i.e. a sequence of write() calls)? Or does it have to "pull" its input using iterators? I'm looking at using the parser primarily to validate that the sequence of write() calls is a well-formed legitimate sequence, but it might also inject additional tokens into the stream.
I know I can push a sequence of tokens to a component that expects to pull the sequence by using threads, but that's a messy solution.