WCF: How to change the processing order of messages? -
My wcf-service should process messages from customers in a particular order. If the message contains the same tag (defined, for example, as a parameter of operation), these messages should be processed sequentially, they can not be processed individually in separate threads. Messages with the same tag can be obtained from different clients. How to implement this requirement?
is an integration design pattern that tells you what to do to implement the commands of your messages Will happen.
Comments
Post a Comment