ax 2009: How to process only certain jobs from Queue Manager?

This question is not answered

Hello, 

I put my own tasks into Queue Manager to be processed but there might be also other tasks that doesn't  belong to me.

I start processing of tasks from Queue Manager using code which is behind a Button press. Code is following.

I don't want to start processing others tasks because I don't know them. What is the technique to process only own tasks that are in Queue Manager?

Thank you,

Michael

 

 AifGatewayReceiveService aifGatewayReceiveService;

 AifInboundProcessingService aifInboundProcessingService;

AifOutboundProcessingService aifOutboundProcessingService;

 AifGatewaySendService aifGatewaySendService;

 ;

 

aifGatewayReceiveService = new AifGatewayReceiveService();

aifInboundProcessingService = new AifInboundProcessingService();

aifOutboundProcessingService = new AifOutboundProcessingService();

aifGatewaySendService = new AifGatewaySendService();

aifGatewayReceiveService.run();

aifInboundProcessingService.run();

aifOutboundProcessingService.run();

aifGatewaySendService.run();

All Replies
  • Or is Batch Job only way to process own jobs in Queue Manager without interfering other jobs that does not belong to you??

    Michael