I have a case where I will be generating a very large (larger than I want to put into a buffer) representation as a response to a request. I'd like to generate it by writing to a stream.
How do I hook that up in my Restlet.handle() method? To be more specific what kind of object do I instantiate and then pass to the Response.setEntity(), that I can then start writing as I generate the new representation. Is there an example I can look at? Thanks, Jon

