Re: Read processor property in init()

2018-03-29 Thread Sivaprasanna
Yep. That’s correct. On Thu, 29 Mar 2018 at 6:45 PM, Jeff Zemerick wrote: > Thanks! Just to confirm, each time the processor is started the > @OnScheduled annotated method is executed, right? > > Jeff > > > On Wed, Mar 28, 2018 at 9:07 AM, Sivaprasanna > wrote: > > > Just to add on top of what

Re: Read processor property in init()

2018-03-29 Thread Jeff Zemerick
Thanks! Just to confirm, each time the processor is started the @OnScheduled annotated method is executed, right? Jeff On Wed, Mar 28, 2018 at 9:07 AM, Sivaprasanna wrote: > Just to add on top of what Mike said. The @OnScheduled annotation indicates > that the method that is marked with this a

Re: Read processor property in init()

2018-03-28 Thread Sivaprasanna
Just to add on top of what Mike said. The @OnScheduled annotation indicates that the method that is marked with this annotation will run when a processor is started every time. So basically the setup() will be called and executed everytime the processor is started from the UI. On Wed, 28 Mar 2018

Re: Read processor property in init()

2018-03-28 Thread Jeff Zemerick
I will give that a go. Thanks for the quick answer, Mike! On Wed, Mar 28, 2018 at 9:01 AM, Mike Thomsen wrote: > Just do... > > @OnScheduled > public void setup(ProcessContext context) { > //Read properties and do setup. > } > > On Wed, Mar 28, 2018 at 8:57 AM, Jeff Zemerick wrote: > >> Hi e

Re: Read processor property in init()

2018-03-28 Thread Mike Thomsen
Just do... @OnScheduled public void setup(ProcessContext context) { //Read properties and do setup. } On Wed, Mar 28, 2018 at 8:57 AM, Jeff Zemerick wrote: > Hi everyone, > > Is there a recommended method for making user-configurable property > values available to a processor's init()? I wo

Read processor property in init()

2018-03-28 Thread Jeff Zemerick
Hi everyone, Is there a recommended method for making user-configurable property values available to a processor's init()? I would like to load a large index file but allow the user to specify the index's path. I am guessing that init() is executed too early to read user properties. Thanks for an