Author |
Message |
Topic: MQ Callback function call wait till some job is done |
NeXgeN
Replies: 10 Views: 7541
|
Forum: General IBM MQ Support Posted: Fri Oct 25, 2013 1:48 am Subject: MQ Callback function call wait till some job is done |
Cool. Thanks Paul
Suspend and Resume serves my purpose. |
Topic: MQ Callback function call wait till some job is done |
NeXgeN
Replies: 10 Views: 7541
|
Forum: General IBM MQ Support Posted: Fri Oct 25, 2013 1:22 am Subject: MQ Callback function call wait till some job is done |
When using Async consume you are guaranteed that your callback won't called multiple times at the same time for the same HOBJ. So, until you have returned from your callback you won't be given the 'ne ... |
Topic: MQ Callback function call wait till some job is done |
NeXgeN
Replies: 10 Views: 7541
|
Forum: General IBM MQ Support Posted: Thu Oct 24, 2013 8:29 pm Subject: MQ Callback function call wait till some job is done |
I am not processing the messages in a separate thread, messages are processed in the callback thread only, but the main thread does some other operations , which is different from message processing. ... |
Topic: MQ Callback function call wait till some job is done |
NeXgeN
Replies: 10 Views: 7541
|
Forum: General IBM MQ Support Posted: Thu Oct 24, 2013 8:47 am Subject: MQ Callback function call wait till some job is done |
previously we used to poll MQ at timely intervals for any new data using MQGET, now our main program is running continously, MQ callback function has to retrieve data and do some actions using the da ... |
Topic: MQ Callback function call wait till some job is done |
NeXgeN
Replies: 10 Views: 7541
|
Forum: General IBM MQ Support Posted: Thu Oct 24, 2013 5:58 am Subject: MQ Callback function call wait till some job is done |
We have a requirement to receive the message from MQ in a different thread that the main program thread, So had to use callback.
In the second pattern, will it create one thread and wait for callb ... |
Topic: MQ Callback function call wait till some job is done |
NeXgeN
Replies: 10 Views: 7541
|
Forum: General IBM MQ Support Posted: Wed Oct 23, 2013 7:21 pm Subject: MQ Callback function call wait till some job is done |
Hi i am using MQCB to register a callback function on my queue for reading new data. I have used MQGMO option of MQGMO_SYNCPOINT. So call MQCMIT at the end of the callback function too. Immediately i ... |