@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
25 lines (22 loc) • 882 B
text/typescript
// ets_tracing: off
import type * as CK from "../../../../Collections/Immutable/Chunk/index.js"
import * as H from "../../../../Hub/index.js"
import * as M from "../../../../Managed/index.js"
import type * as C from "../core.js"
import * as Ensuring from "./ensuring.js"
import * as FromChunkHubManaged from "./fromChunkHubManaged.js"
/**
* Creates a stream from a subscription to a hub in the context of a managed
* effect. The managed effect describes subscribing to receive messages from
* the hub while the stream describes taking messages from the hub.
*
* The hub will be shut down once the stream is closed.
*/
export function fromChunkHubManagedWithShutdown<R, E, O>(
hub: H.XHub<never, R, unknown, E, never, CK.Chunk<O>>
): M.UIO<C.Stream<R, E, O>> {
return M.map_(
FromChunkHubManaged.fromChunkHubManaged(hub),
Ensuring.ensuring(H.shutdown(hub))
)
}