Re: Java Filter Plugin - initialize(ARPluginContext context) Question

2012-01-24 Thread Axton
The object references are different for each... @19fc25 @b83be0 @1631573 @ffc3eb @d844a9 @f2c96c @831a91 @16c06dd @268cc6 Not sure where my problem is coming from, but I don't get repeatable results On Mon, Jan 23, 2012 at 3:52 PM, John Baker jba...@javasystemsolutions.comwrote: Axton, Why

Re: Java Filter Plugin - initialize(ARPluginContext context) Question

2012-01-24 Thread Axton
It was me. Got it figured out. Thanks for the responses. Axton On Tue, Jan 24, 2012 at 8:37 AM, Axton axton.gr...@gmail.com wrote: The object references are different for each... @19fc25 @b83be0 @1631573 @ffc3eb @d844a9 @f2c96c @831a91 @16c06dd @268cc6 Not sure where my problem

Java Filter Plugin - initialize(ARPluginContext context) Question

2012-01-23 Thread Axton
Does anyone know if the objects instantiated in this method are local to each thread the plugin server creates or is it local to the plugin server? Seems like I am running into a race condition with this where each thread the plugin server initializes shares the same objects. Thanks, Axton Grams

Java Filter Plugin - initialize(ARPluginContext context) Question

2012-01-23 Thread John Baker
Axton, Why don't you print out the object reference? If PluginFactory really does dish out the same Plugin to multiple threads, and the plugins are not thread safe, I think you will see many weird outcomes... John

Re: Java Filter Plugin - initialize(ARPluginContext context) Question

2012-01-23 Thread LJ LongWing
: Java Filter Plugin - initialize(ARPluginContext context) Question ** Does anyone know if the objects instantiated in this method are local to each thread the plugin server creates or is it local to the plugin server? Seems like I am running into a race condition with this where each thread