Mule ActiveMQ at particular time interval -
i have scenario wherein need start receiving messages queue after particular time interval irrespective of time message placed in queue.
for example flow a process service calls , place below message in queue
{ filename:"blahblah.pdf" }
now flow b need start recieving messages queue after 9pm(or time) daily , process it.
i wonder possible achieve scenario in mule.
you can achieve in mulesoft using poll scope or quartz schedular. code thing
<quartz:inbound-endpoint jobname="readqin" cronexpression="* * * * * ?" doc:name="quartz"> <quartz:endpoint-polling-job> <quartz:job-endpoint address="jms://qin" /> </quartz:endpoint-polling-job> </quartz:inbound-endpoint>
Comments
Post a Comment