ChannelFuture

final class ChannelFuture[A]
Companion:
object
class Object
trait Matchable
class Any

Value members

Concrete methods

def cancel(interruptIfRunning: Boolean): UIO[Boolean]
def execute: Task[Option[A]]

Resolves when the underlying future resolves and removes the handler (output: A) - if the future is resolved successfully (cause: None) - if the future fails with a CancellationException (cause: Throwable) - if the future fails with any other Exception

Resolves when the underlying future resolves and removes the handler (output: A) - if the future is resolved successfully (cause: None) - if the future fails with a CancellationException (cause: Throwable) - if the future fails with any other Exception

def toManaged: ZManaged[Any, Throwable, Option[A]]