import { DEFAULT_CHUNK_SIZE } from "@effect/core/stream/Stream/definition" /** * Creates a stream from a subscription to a hub in the context of a scoped * effect. The scoped effect describes subscribing to receive messages from * the hub while the stream describes taking messages from the hub. * * @param maxChunkSize * Maximum number of queued elements to put in one chunk in the stream. * * @tsplus static effect/core/stream/Stream.Ops fromHubScoped */ export function fromHubScoped( hub: Hub, maxChunkSize = DEFAULT_CHUNK_SIZE ): Effect> { return hub.subscribe.map((queue) => Stream.fromQueueWithShutdown(queue, maxChunkSize)) }