简体   繁体   中英

MSMQ receive and delete

Is there is any option to remove a message from MSMQ after it has been read?

Like, a receive + delete can run as atomic operation?

It sounds like you want to peek at the next message and then receive it after you're finished processing.

Message message = Queue.Peek();
Queue.ReceiveById(message.Id);

Are you referring to the difference between Receive and Peek in MSMQ?

IMO the simplest mechanism to ensure atomic operations is to place the queue operations within a TransactionScope. This can be done with WCF like so.

http://msdn.microsoft.com/en-us/library/ms789032.aspx

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM