You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, you need a separate class for each cronjob, and any class that exists will be automatically run. This is simpler, but also less flexible. For example, you can't create a class CronRunBuildTask class that takes a build task as a wrapper.
That way, you could mix and match simple CronTask implementations with configured ones:
Right now, you need a separate class for each cronjob, and any class that exists will be automatically run. This is simpler, but also less flexible. For example, you can't create a class
CronRunBuildTask
class that takes a build task as a wrapper.That way, you could mix and match simple CronTask implementations with configured ones:
If you wanted to support the old way of running all implementors of the interface, you could have a config option for that:
The text was updated successfully, but these errors were encountered: