All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.malliina.logstreams.client.package.scala Maven / Gradle / Ivy

There is a newer version: 2.8.2
Show newest version
package com.malliina.logstreams

import cats.effect.IO
import fs2.concurrent.Topic

package object client {
  implicit class TopicOps[T](val t: Topic[IO, T]) extends AnyVal {
    def push(message: T): Unit = t.publish1(message).unsafeRunAsyncAndForget()
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy