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();