c++ - How robust are windows messages? -


If I have a message queue with PostMessage (and this is true) I can be sure that the window will eventually act on the message What is a horrific event? (Anything that will crash the program)

Once posted, the messages are not lost from the queue .

One of our products is a Windows service that uses Windows Messaging to communicate between threads and it depends heavily on them. So far the only problem we have seen is that if you have them Posting very fast, the queue just fills and does not accept more messages until a line begins to drain.

Comments