TQueue
A convenience implementation of a queue in the Txn
monad, built on top of
TVar
.
import cats.effect.IO
import cats.effect.unsafe.implicits.global
import cats.syntax.semigroup._
import cats.instances.string._
import io.github.timwspence.cats.stm.STM
val stm = STM.runtime[IO].unsafeRunSync()
// stm: STM[IO] = io.github.timwspence.cats.stm.STM$Make$$anon$1$$anon$2@9f8b2f2
import stm._
val txn: Txn[String] = for {
tqueue <- TQueue.empty[String]
_ <- tqueue.put("hello")
_ <- tqueue.put("world")
hello <- tqueue.read
world <- tqueue.peek
} yield hello |+| world
// txn: Txn[String] = Bind(
// txn = Bind(
// txn = Alloc(
// v = Delay(
// thunk = cats.effect.IO$$$Lambda$10367/0x0000000802cffc40@39816237,
// event = cats.effect.tracing.TracingEvent$StackTrace
// )
// ),
// f = scala.Function1$$Lambda$10436/0x0000000802da9840@38e9d668
// ),
// f = <function1>
// )
val result = stm.commit(txn).unsafeRunSync()
// result: String = "helloworld"