@team-supercharge/nest-amqp
Version:
AMQP 1.0 module for Nest framework
15 lines (14 loc) • 445 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SendState = void 0;
var SendState;
(function (SendState) {
/**
* Message was sent successfully
*/
SendState[SendState["Success"] = 0] = "Success";
/**
* Message failed to send, Broker did not accept the message
*/
SendState[SendState["Failed"] = 1] = "Failed";
})(SendState = exports.SendState || (exports.SendState = {}));