@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
60 lines (56 loc) • 1.75 kB
text/typescript
// ets_tracing: off
import * as A from "../../Collections/Immutable/Chunk/index.js"
import * as Tp from "../../Collections/Immutable/Tuple/index.js"
import * as T from "../../Effect/index.js"
import { pipe } from "../../Function/index.js"
import * as H from "../../Hub/index.js"
import * as M from "../../Managed/index.js"
import * as RefM from "../../RefM/index.js"
import * as S from "../Stream/index.js"
/**
* A `SubscriptionRef<A>` contains a `RefM` with a value of type
* `A` and a `Stream` that can be subscribed to in order to receive the
* current value as well as all changes to the value.
*/
export class SubscriptionRef<A> {
constructor(public ref: RefM.RefM<A>, public changes: S.Stream<unknown, never, A>) {}
}
/**
* Creates a new `SubscriptionRef` with the specified value.
*/
export function make<A>(a: A): T.UIO<SubscriptionRef<A>> {
return pipe(
T.do,
T.bind("ref", () => RefM.makeRefM(a)),
T.bind("hub", () => H.makeUnbounded<A>()),
T.let("changes", ({ hub, ref }) =>
S.unwrapManaged(
M.managedApply(
T.uninterruptible(
RefM.modify_(ref, (a) =>
T.zipWith_(
T.succeed(a),
H.subscribe(hub).effect,
(a, { tuple: [finalizer, queue] }) =>
Tp.tuple(
Tp.tuple(
finalizer,
S.concat_(S.fromChunk(A.single(a)), S.fromQueue(queue))
),
a
)
)
)
)
)
)
),
T.map(
({ changes, hub, ref }) =>
new SubscriptionRef(
RefM.tapInput_(ref, (_) => H.publish_(hub, _)),
changes
)
)
)
}