effect-queues-background

Installation
SKILL.md

Queues, PubSub & Background

When to use

  • Decoupling producers/consumers with backpressure
  • Broadcasting events to multiple subscribers
  • Running background loops with graceful shutdown

Queue (bounded)

import { Queue } from "effect"
const q = yield* Queue.bounded<string>(32)
yield* Queue.offer(q, "job")
const job = yield* Queue.take(q)
Installs
32
GitHub Stars
5
First Seen
Jan 23, 2026
effect-queues-background — mepuka/effect-ontology