@imqueue/pg-pubsub
Version:
Reliable PostgreSQL LISTEN/NOTIFY with inter-process lock support
19 lines • 595 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DefaultOptions = void 0;
const constants_1 = require("../constants");
/**
* Hard-coded pre-set of PgPubSubOptions
*
* @see PgPubSubOptions
* @type {PgPubSubOptions}
*/
exports.DefaultOptions = Object.freeze({
retryLimit: constants_1.RETRY_LIMIT,
retryDelay: constants_1.RETRY_DELAY,
singleListener: constants_1.IS_ONE_PROCESS,
acquireInterval: constants_1.ACQUIRE_INTERVAL,
filtered: false,
executionLock: constants_1.EXECUTION_LOCK,
});
//# sourceMappingURL=PgPubSubOptions.js.map