Retrieve the fixedDelay of an async task
Hello,
I have an AbstractAutoScheduledTask that has a configurationProperty "fixedDelay". How could I access the value of this configuration property from another service. Basically I need to do some validation on a value in a field in an editor. The validation is based on the value of the "fixedDelay".
I was thinking to specify this configurationProperty in a service instead of AbstractAutoScheduledTask, then the AbstractAutoScheduledTask simply retrieves this configurationProperty, and the client side can also access this configurationProperty. Is this the right thing to do?