From: Denis Stanton <email@hidden>
To: email@hidden
CC: email@hidden
Subject: Re: how many instances?
Date: Wed, 19 Nov 2003 13:04:40 +1300
Thanks for you help and reassurance Jonathan
On Wednesday, November 19, 2003, at 10:48 AM, email@hidden
wrote:
Fortunatley, it's easy to turn to 'yes'. You don't need to use a
differnet set of APIs, or anything like that. You simply need to put:
setAllowsConcurrentRequestHandling(true)
in your Application constructor.
I need to clarify something to the list since a couple of people have taken
my reference to APIs to mean something I didn't intend. I wasn't thinking
there was more than one API, just that some methods should be avoided
because they would cause problems with concurrent requests. That is, I was
worried that some of the common methods I use might not be thread safe and
I had not seen any warnings.
What I am hearing is that the methods are individually OK, but I could
write unsafe code. As long as I don't put anything in Application or class
variables I'm probably OK.