I am trying to download 200 urls. I am using a ClientResource to retrieve
content of a webpage as below - This is from the example restlet tutorial.
Question is - Is there a way to run this same request in a multithreaded
manner. For example if I have around 20 threads running and then I can download
the url in parallel. Is it possible to run ClientResource in a multithreaded
manner?
new ClientResource("http://www.restlet.org").get().write(System.out);
------------------------------------------------------
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2729482