On Mon, 27 Oct 2003, James Williams - Sun East Coast IR Development wrote: > > > When two or more parser instances exist in a process, the instances can > > be used concurrently, without external synchronization. That is, in an > > application containing two parsers and two threads, one parser can be running > > within the first thread concurrently with the second parser running within the > > second thread > > Basically, can I reuse the same writer instance in 2 separate threads > without synchronization?
Depends on whether you expect both threads to be simultaneously accessing the writer instance. If the answer is no, then you're fine. Sean --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
