Hello! First of all - thank you for your work. I propose add much simpler loader (maybe as chain) for tasks. Easiest way to add sheduled repeated tasks - register they via Symfony's DiC. For example Magento uses XML: http://www.magentocommerce.com/wiki/1_-_installation_and_configuration/how_to_setup_a_cron_job ``` xml <service id="foo.bar"> <tag name="ninethousand_jobqueue.task" command="%path_to_php% console some:command" cron-expr="0 1 * * *" /> </service> ```