Re: RFR (jaxp) 8136778: SAXParser: support stopping a parsing process

2015-10-02 Thread Daniel Fuchs
Hi Joe, The spec for stop says: 561 * This method can be called anywhere from any event method of a SAX 562 * handler. Once called, it does not terminate the parsing process 563 * immediately. Instead, it will continue finishing and returning the 564 * current event, a

RFR (jaxp) 8136778: SAXParser: support stopping a parsing process

2015-09-30 Thread huizhe wang
Hi, This is an enhancement to allow a SAX parsing process to be stopped and resumed. A SAX process scans through an entire document while making callbacks to its handler when defined events are met. The stop and resume methods make it easy to stop and subsequently resume the process as needed