jobqueue-common
jobqueue-common copied to clipboard
A base for job queue handling in Flow framework applications
This is a first draft, to checkout if this is something you are even going to accept. (It is fully functionally though - but it needs to be documented -...
Once a `messageFinished` signal is emitted, the Persistence Manager persist all unpersisted changes. This is to have the jobmanager act as a normal CLI command, known from the a CommandController...
**Behavior** I'm having a job with a `execute()` method like this ``` $transfer = new Transfer(...); $this->transferRepository->add($transfer); return true; ``` The new transfer object is not persisted to the database...
I have a project that need to use RabbitMQ, currently the JobQueue package, connect to the queue server for each message, it's not really efficient. RabbitMQ offers API to use...
In a larger Neos installation we've seen multiple occasions of the following rough workflow with the result of having a log of Exception-/Stack-Trace files being generated - and detected by...
This will allow defer annotations to trigger creation of another job while executing a job. Previously this was completely prevented to avoid an infinite loop as the aspect is triggered...