«Pro MSMQ: Microsoft Message Queue Programming» Scot Boyd, Richard Costall, Ken Rabold, Arohi Redkar, Tejaswi Redkar, Carlos Walzer Message Queuing provides a way for applications to communicate asynchronously, and has often been compared to e-mail, but for applications rather than people. On Windows, Message Queuing is implemented in Microsoft Message Queuing, or MSMQ. A client application can communicate with a server by sending data in the form of an MSMQ message to a particular queue, where the server application can retrieve it and process it. Because the message will remain on the queue until it is retrieved, we can guarantee that it will be processed at some point, even if the server application is down when the message is sent.. Напишите свою рецензию о книге Scot Boyd, Richard Costall, Ken Rabold, Arohi Redkar, Tejaswi Redkar, Carlos Walzer «Pro MSMQ: Microsoft Message Queue Programming» http://izbe.ru/book/73222-pro-msmq-microsoft-message-queue-programming-scot-boyd-richard-costall-ken-rabold-arohi-redkar-tejaswi-redkar-carlos-walzer/
Всем привет! В этом выпуске я хотел бы подробнее поговорить о команде message(). Хотя казалось бы – с ней все понятно. Мы ранее, когда писали первый скрипт, ее рассмотрели, и она выводит сообщение в отдельное окошко. Как-то так: А что если в процессе выполнения скрипта нужно выводить не одно сообщение, а несколько? Конечно, можно в данном окошке пролистывать эти сообщения и анализировать. Но, это если таких сообщений будет 5-10. А, если будет работать несколько скриптов, и каждый будет генерировать сотни сообщений...