Jorg Heymans wrote:
Say i write my own transformer (or serializer, or generator doesn't matter),
Transformers, in particular, can not be threadsafe. They are all Recyclable. This is due Transformer interface design (setContentHandler method in AbstractXMLProducer.java).
Vadim
is it true then that a new instance of my custom class is created each timeAFAIU, you need to make your component implement ThreadSafe for it to be shared across threads. The default is that a new component is created for each invocation.
it is executed in a pipeline? (uncached)
My code relies on a few instance variables (simple ones like Logger but also
more crucial ones like StringBuffers for SAX parsing ), I'ld really hate to
find out now that instance variables aren't thread safe in cocoon.
Regards, Upayavira
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
