Introduction to Asynchronous StAX Parsing Using Aalto
Overview Usually StAX parsing is synchronous in nature. By that we mean that the InputStream is blocked by the StAX parser until such time it reads the necessary data. This is typically known as the ‘Pull’ model where-in the StAX parser pulls the data on an as-need basis. In fact, it is this ‘Pull’ model … Read more