@azure/event-hubs
Version:
Azure Event Hubs SDK for JS.
51 lines (50 loc) • 1.81 kB
JavaScript
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
var partitionGate_exports = {};
__export(partitionGate_exports, {
PartitionGate: () => PartitionGate
});
module.exports = __toCommonJS(partitionGate_exports);
class PartitionGate {
_partitions = /* @__PURE__ */ new Set();
/**
* Adds a partition, throwing an Error if there is a conflict with partitions (including "all")
* that are already added.
*
* @param partitionId - A partition ID or the constant "all"
*/
add(partitionId) {
if (partitionId === "all" && this._partitions.size > 0 || this._partitions.has(partitionId) || this._partitions.has("all")) {
throw new Error(`Partition already has a subscriber.`);
}
this._partitions.add(partitionId);
}
/**
* Removes a partition
*
* @param partitionId - A partition ID or the constant "all"
*/
remove(partitionId) {
this._partitions.delete(partitionId);
}
}
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
PartitionGate
});
//# sourceMappingURL=partitionGate.js.map