UNPKG

veffect

Version:

powerful TypeScript validation library built on the robust foundation of Effect combining exceptional type safety, high performance, and developer experience. Taking inspiration from Effect's functional principles, VEffect delivers a balanced approach tha

88 lines (87 loc) 3.14 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.match = exports.isUpstreamPullStrategy = exports.isPullAfterNext = exports.isPullAfterAllEnqueued = exports.UpstreamPullStrategyTypeId = exports.PullAfterNext = exports.PullAfterAllEnqueued = void 0; var _Function = /*#__PURE__*/require("../../Function.js"); var _Predicate = /*#__PURE__*/require("../../Predicate.js"); var OpCodes = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("../opCodes/channelUpstreamPullStrategy.js")); function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); } function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; } /** @internal */ const UpstreamPullStrategySymbolKey = "effect/ChannelUpstreamPullStrategy"; /** @internal */ const UpstreamPullStrategyTypeId = exports.UpstreamPullStrategyTypeId = /*#__PURE__*/Symbol.for(UpstreamPullStrategySymbolKey); const upstreamPullStrategyVariance = { /* c8 ignore next */ _A: _ => _ }; /** @internal */ const proto = { [UpstreamPullStrategyTypeId]: upstreamPullStrategyVariance }; /** @internal */ const PullAfterNext = emitSeparator => { const op = Object.create(proto); op._tag = OpCodes.OP_PULL_AFTER_NEXT; op.emitSeparator = emitSeparator; return op; }; /** @internal */ exports.PullAfterNext = PullAfterNext; const PullAfterAllEnqueued = emitSeparator => { const op = Object.create(proto); op._tag = OpCodes.OP_PULL_AFTER_ALL_ENQUEUED; op.emitSeparator = emitSeparator; return op; }; /** @internal */ exports.PullAfterAllEnqueued = PullAfterAllEnqueued; const isUpstreamPullStrategy = u => (0, _Predicate.hasProperty)(u, UpstreamPullStrategyTypeId); /** @internal */ exports.isUpstreamPullStrategy = isUpstreamPullStrategy; const isPullAfterNext = self => self._tag === OpCodes.OP_PULL_AFTER_NEXT; /** @internal */ exports.isPullAfterNext = isPullAfterNext; const isPullAfterAllEnqueued = self => self._tag === OpCodes.OP_PULL_AFTER_ALL_ENQUEUED; /** @internal */ exports.isPullAfterAllEnqueued = isPullAfterAllEnqueued; const match = exports.match = /*#__PURE__*/(0, _Function.dual)(2, (self, { onAllEnqueued, onNext }) => { switch (self._tag) { case OpCodes.OP_PULL_AFTER_NEXT: { return onNext(self.emitSeparator); } case OpCodes.OP_PULL_AFTER_ALL_ENQUEUED: { return onAllEnqueued(self.emitSeparator); } } }); //# sourceMappingURL=upstreamPullStrategy.js.map