Link to home
Start Free TrialLog in
Avatar of pointeman
pointemanFlag for United States of America

asked on

MessageQueue Asynchronous Transactional or Non-Transactional

I have found many examples on the Internet concerning Asynchronous MessageQueue. The examples are not always clear if its a Transactional or Non-Transactional queue. I have a successful working Non-Transactional Synchronous queue working with C# .NET code. Now I want to work with Asynchronous code.

Q. Can a Transactional queue only be used Asynchronously?

Q. Can a Non-Transactional queue be used Asynchronously?

Q. Advantages or disadvantages of either question above?
Avatar of deepu chandran
deepu chandran
Flag of Germany image

Hi,

Q1: No, you can have Non-Trnasaction Queue be used asynchronously

Refer below article it has the answer for Q3

http://www.codeproject.com/Articles/4348/Programming-MSMQ-in-NET-Part-2-Transactional-Messa

-- Deepu
ASKER CERTIFIED SOLUTION
Avatar of Aaron Jabamani
Aaron Jabamani
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of pointeman

ASKER

Thx