Update msmq.js

This commit is contained in:
Namhyeon Go 2021-09-23 13:59:11 +09:00
parent cfb2c65541
commit b7914adc5c

View File

@ -3,6 +3,8 @@
//
// references:
// - https://gist.github.com/vladaman/6375841
// - https://docs.microsoft.com/en-us/previous-versions/windows/desktop/msmq/ms703952(v=vs.85)
// - https://docs.microsoft.com/en-us/previous-versions/windows/desktop/msmq/ms705286(v=vs.85)
//
////////////////////////////////////////////////////////////////////////
@ -55,4 +57,4 @@ var MSMQObject = function(queueName) {
exports.MSMQObject = MSMQObject;
exports.open = function(queueName) {
return (new MSMQObject(queueName)).open();
};
};