I've profiled it in the past and it isn't as bad as it seems. though it can throw people off.
peter On Mon, 17 Jan 2005 22:34:45 -0600, Anil Philip <[EMAIL PROTECTED]> wrote: > Yes, I am implementing it, configure(TestElement). > My issue was the instance of Sampler being created more than once and losing > data that had been set in it earlier. > > -----Original Message----- > From: Peter Lin [mailto:[EMAIL PROTECTED] > Sent: Monday, January 17, 2005 6:45 PM > To: JMeter Developers List > Subject: Re: sampler being created more than once?? > > you also have to implement configure(TestElement) > > JMeter's engine will use that method to configure the thread. > > peter > > On Mon, 17 Jan 2005 16:39:43 -0600, Anil Philip > <[EMAIL PROTECTED]> wrote: > > I am writing a CorbaSampler (aka TCPSampler()). > > > > In my SamplerGUI, am I creating the sampler in the correct place? > > > > public TestElement createTestElement() > > > > { > > > > CorbaSampler sampler = new CorbaSampler(); > > > > modifyTestElement(sampler); > > > > return sampler; > > > > } > > > > However I find that createTestElement() is indirectly called from several > > places by JMeter (26 places!). > > > > So after I initially create JMeter, I set some data in it. In the sample() > > call, I try to retrieve the data but find that a *new* instance of > > CorbaSampler() has been created! So that now my data is lost. > > > > Thanks, > > > > Anil Philip > > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
