schmittjoh / JMSJobQueueBundle

Run and Schedule Symfony Console Commands as Background Jobs
http://jmsyst.com/bundles/JMSJobQueueBundle
335 stars 254 forks source link

Progress #61

Open zhil opened 10 years ago

zhil commented 10 years ago

We plan to use Job Queue for slow background operations (like .xls report generation). It would be nice to have ability to view progress of the job (in %).

So, basically job will have (int)progress and console command will set progress while executing job.

Its pretty easy to add, will you accept PR with such a change?

bassrock commented 10 years ago

+1 pretty cool idea. So the console command would update the job entity's progress value?

schmittjoh commented 10 years ago

Sounds good.

On Mon, Mar 17, 2014 at 8:32 PM, bassrock notifications@github.com wrote:

+1 pretty cool idea. So the console command would update the job entity's progress value?

Reply to this email directly or view it on GitHubhttps://github.com/schmittjoh/JMSJobQueueBundle/issues/61#issuecomment-37859825 .

zhil commented 10 years ago

+1 pretty cool idea. So the console command would update the job entity's progress value?

yes. I plan to use it in such a way:

Sounds good.

ok, I will create PR for it