UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

29 lines (27 loc) 1.03 kB
// ets_tracing: off import * as T from "../../../../Effect/index.mjs"; import { pipe } from "../../../../Function/index.mjs"; import * as M from "../../../../Managed/index.mjs"; import * as Q from "../../../../Queue/index.mjs"; import * as RunIntoManaged from "./runIntoManaged.mjs"; /** * Converts the stream to a managed queue of chunks. After the managed queue is used, * the queue will never again produce values and should be discarded. */ export function toQueue_(self, capacity = 2) { return M.map_(M.tap_(M.bind_(M.do, "queue", () => T.toManagedRelease_(Q.makeBounded(capacity), Q.shutdown)), ({ queue }) => M.fork(RunIntoManaged.runIntoManaged_(self, queue))), ({ queue }) => queue); } /** * Converts the stream to a managed queue of chunks. After the managed queue is used, * the queue will never again produce values and should be discarded. * * @ets_data_first toQueue_ */ export function toQueue(capacity = 2) { return self => toQueue_(self, capacity); } //# sourceMappingURL=toQueue.mjs.map