I'm moving on to the
I'm moving on to the next phase of my master's thesis project. Converting a SAX-based XML parser interface from a "push" based interface to a "pull" based interface. (Roughly, this means that I have an interface that will give me the next piece of data on demand rather than sending it to me whether or not I want it.).
This is turning out to be neater than I was expecting because it will also likely be multi-threaded. My compiled programs will grab info from a shared memory space and the SAX parser interface will be placing them there. I didn't think my Concurrent Programming class would be so useful so soon. Always nice to be able to put stuff I've learned into practice.
