Re: how to lock the access to an array till a method is finished...

2002-11-07 Thread Peter Dolukhanov
November 2002 12:43 To: [EMAIL PROTECTED] Subject: how to lock the access to an array till a method is finished... Hi, I have the following situation: In a bean, I have a method that populates an array with a large, very large amount of data (required for some operations). >From my jsp page I do

Re: how to lock the access to an array till a method is finished ...

2002-11-07 Thread Ionel Condor
> > > > > -Original Message- > > From: Ionel Condor [SMTP:[EMAIL PROTECTED]] > > Sent: 07 November 2002 03:16 > > To: [EMAIL PROTECTED] > > Subject: Re: how to lock the access to an array till a method is > > finished ... > > >

Re: how to lock the access to an array till a method is finished ...

2002-11-07 Thread Adrian Janssen
; > > > -----Original Message----- > > > From: Ionel Condor [SMTP:[EMAIL PROTECTED]] > > > Sent: 07 November 2002 02:43 > > > To: [EMAIL PROTECTED] > > > Subject: how to lock the access to an array till a method is > > > finished... >

Re: how to lock the access to an array till a method is finished ...

2002-11-07 Thread Zerbe John W
the web for > the PDF version of Bruce Eckel's book: "Thinking in Java" and read chapter > 14. > > > > > -Original Message- > > From: Ionel Condor [SMTP:[EMAIL PROTECTED]] > > Sent: 07 November 2002 02:43 > > To: [EMAIL PROTECTED]

Re: how to lock the access to an array till a method is finished ...

2002-11-07 Thread Ionel Condor
e Eckel's book: "Thinking in Java" and read chapter > 14. > > > > > -Original Message- > > From: Ionel Condor [SMTP:[EMAIL PROTECTED]] > > Sent: 07 November 2002 02:43 > > To: [EMAIL PROTECTED] > > Subject: how to lock the acc

Re: how to lock the access to an array till a method is finished ...

2002-11-07 Thread Adrian Janssen
of Bruce Eckel's book: "Thinking in Java" and read chapter 14. > -Original Message- > From: Ionel Condor [SMTP:[EMAIL PROTECTED]] > Sent: 07 November 2002 02:43 > To: [EMAIL PROTECTED] > Subject: how to lock the access to an array till a method is >

how to lock the access to an array till a method is finished...

2002-11-07 Thread Ionel Condor
Hi, I have the following situation: In a bean, I have a method that populates an array with a large, very large amount of data (required for some operations). >From my jsp page I do not want to allow any web clients to see the length of this array, till the process of population is finishedI m