Regarding the QP method in Activity
HI ALL,
Can you please explain me what happens if i don't check the Queue Immediately.
Same QP i'm calling in different jobs at the both places the check box with Queue Immediately is uncheck. In one job it is working fine. Queues are processed. But in another job Queue is not processing.
With one job QP is called once and job is processed. Queues are processed.
In another job i'm calling inside the loop. Queues are not processing for this. But when i checked the queue immediately. It is working, Queues are processed.
Can anyone explain in loop we need check the Queue Immediately.
If not immediate have you been using delayed? Queue immediately will queue and process instance immediately, that's why when you marked immediate it processed quickly. If you use delayed instances will be queued in a delayeditems table and will be pushed to kafka only when passed time reaches. So processing will be based on that. If delayed is not required you can check immediate for both.