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

io.github.zeal18.zio.mongodb.driver.reactivestreams.InterruptibleSubscriber.scala Maven / Gradle / Ivy

package io.github.zeal18.zio.mongodb.driver.reactivestreams

import org.reactivestreams.Subscriber
import zio.Task
import zio.UIO

private trait InterruptibleSubscriber[A, B] extends Subscriber[A] {
  def interrupt(): UIO[Unit]
  def await(): Task[B]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy