Job iniciar só se a fila estiver com itens pendentes = New

É possível só iniciar a o Job da Trigger de tempo só se a Fila(queue) tiver itens com status New ou Pendente?

@Thiago_Reolon

Ideally that is queue trigger…and there is no pending status at all.

If you need in time trigger then after trigger in prcess before starting anything use get queue items and check if any items are present then continue …else end the process

Cheers

não, o que estou buscando é a trigger por tempo, ela executa de 15 em 15 minutos, mas se executou as 08:00 e tinha 2 processos na fila, depois as 08:15 executou de novo e não tinha nenhum processo na fila, eu gostaria de encontrar uma forma do studio se comunicar com a fila e não iniciar o Job as 08:15 e só retornar a executar as 08:30 se tiver processos na fila, se não tiver só retornar a executar as 08:45. sem a necessidade do Job exeuctar e utilizar o reframework para ler se a fila tem itens, até por que o orchestrator é o mesmo ambiente da trigger de tempo e do robot, deve existir algo no sentido do que estou buscando.

não existe uma configuração de só iniciar o robo as 08:15 se tiver itens na fila, se não tiver intens não deve iniciar.

Obrigado por ajudar.

@Thiago_Reolon

Have the queue polling limit to 15 minutes…then it would check for every 15 minutes only on queue trigger

In time trigger without starting process there is no way to know if the items are present or not

Cheers