Regards,
DLT
Best Regards,
Paulo Soares
d...@hongkong.com (Eric) wrote in message news:<69a0d604.03090...@posting.google.com>...
>iText is thread safe.
Just a rather off topic curiosity, if iText is Java, as I suspect it
is, can a Java program be anything other than thread safe? (Unless, I
suppose it uses external resources like a fixed temporary file name).
----------------------------------------
Aandi Inston qu...@dial.pipex.com http://www.quite.com
Please support usenet! Post replies and follow-ups, don't e-mail them.
It's easy to write thread unsafe code in any language.
The simplest way to do this is to use uncontrolled access to global or
static variables. This kind of shared state amongst threads will cause
considerable confusion.
A less common cause is sharing one object on multiple threads. In this case
member variables get changed by different threads leading to confusion.
Many applications are thread-safe in the static/global variable sense. Few
are thread safe in the member-variable sense.
Jos
Best Regards,
Paulo Soares
qu...@dial.pipex.com (Aandi Inston) wrote in message news:<3f5afd23....@reading.news.pipex.net>...