@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
34 lines (30 loc) • 1.25 kB
text/typescript
// ets_tracing: off
import * as H from "../../../../Hub/index.js"
import * as M from "../../../../Managed/index.js"
import type * as TK from "../../Take/index.js"
import type * as C from "../core.js"
import * as ToHub from "./toHub.js"
/**
* Converts the stream to a managed dynamic amount of queues. Every chunk will be replicated to every queue with the
* slowest queue being allowed to buffer `maximumLag` chunks before the driver is backpressured.
*
* Queues can unsubscribe from upstream by shutting down.
*/
export function broadcastedQueuesDynamic_<R, E, A>(
self: C.Stream<R, E, A>,
maximumLag: number
): M.RIO<R, M.UIO<H.HubDequeue<unknown, never, TK.Take<E, A>>>> {
return M.map_(ToHub.toHub_(self, maximumLag), (_) => H.subscribe(_))
}
/**
* Converts the stream to a managed dynamic amount of queues. Every chunk will be replicated to every queue with the
* slowest queue being allowed to buffer `maximumLag` chunks before the driver is backpressured.
*
* Queues can unsubscribe from upstream by shutting down.
*
* @ets_data_first broadcastedQueuesDynamic_
*/
export function broadcastedQueuesDynamic(maximumLag: number) {
return <R, E, A>(self: C.Stream<R, E, A>) =>
broadcastedQueuesDynamic_(self, maximumLag)
}