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

scalapb.zio_grpc.ZManagedChannel.scala Maven / Gradle / Ivy

The newest version!
package scalapb.zio_grpc

import io.grpc.ManagedChannel
import zio.ZIO

object ZManagedChannel {
  def apply(
      channel: ManagedChannel,
      interceptors: Seq[ZClientInterceptor]
  ): ZManagedChannel =
    ZIO.succeed(new ZChannel(channel, interceptors))

  def apply(channel: ManagedChannel): ZManagedChannel = apply(channel, Nil)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy