@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
31 lines (27 loc) • 914 B
text/typescript
// ets_tracing: off
import type * as T from "../../../../Effect/index.js"
import * as H from "../../../../Hub/index.js"
import type * as TK from "../../Take/index.js"
import type * as C from "../core.js"
import * as RunInto from "./runInto.js"
/**
* Publishes elements of this stream to a hub. Stream failure and ending will
* also be signalled.
*/
export function runIntoHub_<R, R1, E extends E1, E1, A>(
self: C.Stream<R, E, A>,
hub: H.XHub<R1, never, never, unknown, TK.Take<E1, A>, any>
): T.Effect<R & R1, E | E1, void> {
return RunInto.runInto_(self, H.toQueue(hub))
}
/**
* Publishes elements of this stream to a hub. Stream failure and ending will
* also be signalled.
*
* @ets_data_first runIntoHub_
*/
export function runIntoHub<R1, E1, A>(
hub: H.XHub<R1, never, never, unknown, TK.Take<E1, A>, any>
) {
return <R, E extends E1>(self: C.Stream<R, E, A>) => runIntoHub_(self, hub)
}