0.1.11 #14

Merged
Thilawyn merged 318 commits from next into master 2025-05-19 14:01:41 +02:00
Showing only changes of commit 04e78e1ea3 - Show all commits

View File

@@ -0,0 +1,23 @@
import { Console, Effect, Fiber, Ref, Stream, SubscriptionRef } from "effect"
await Effect.gen(function*() {
const ref = yield* SubscriptionRef.make("juif")
const stream = ref.changes
const f1 = yield* Stream.runForEach(stream, v => Console.log(`observer 1: ${ v }`)).pipe(
Effect.fork,
)
const f2 = yield* Effect.sleep("200 millis").pipe(
Effect.andThen(Stream.runForEach(stream, v => Console.log(`observer 2: ${ v }`))),
Effect.fork,
)
const f3 = yield* Effect.sleep("100 millis").pipe(
Effect.andThen(Ref.set(ref, "adolf")),
Effect.fork,
)
yield* Fiber.joinAll([f1, f2, f3])
}).pipe(
Effect.runPromise
)