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

zio.http.netty.client.ClientFailureHandler.scala Maven / Gradle / Ivy

package zio.http.netty.client

import zio.{Exit, Promise, Unsafe}

import zio.http.Response
import zio.http.internal.ChannelState

import io.netty.channel.{ChannelHandlerContext, ChannelInboundHandlerAdapter}

/** Handles failures happening in ClientInboundHandler */
private[netty] final class ClientFailureHandler(
  onResponse: Promise[Throwable, Response],
  onComplete: Promise[Throwable, ChannelState],
) extends ChannelInboundHandlerAdapter {
  implicit private val unsafeClass: Unsafe = Unsafe.unsafe

  override def exceptionCaught(ctx: ChannelHandlerContext, cause: Throwable): Unit = {
    val exit = Exit.fail(cause)
    onResponse.unsafe.done(exit)
    onComplete.unsafe.done(exit)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy