sealed abstract classAsync[+E, +A] extends Product with Serializable
The Async class describes the return value of an asynchronous effect
that is imported into an IO value.
Asynchronous effects can return later, which represents an uninterruptible
asynchronous action, now which represents a synchronously computed value,
maybeLater, which represents an interruptible asynchronous action or maybeLaterIO
which represents an interruptible asynchronous action where the canceler has the
form Throwable => IO[Nothing, Unit]
The
Asyncclass describes the return value of an asynchronous effect that is imported into anIOvalue.Asynchronous effects can return
later, which represents an uninterruptible asynchronous action,nowwhich represents a synchronously computed value,maybeLater, which represents an interruptible asynchronous action ormaybeLaterIOwhich represents an interruptible asynchronous action where the canceler has the formThrowable => IO[Nothing, Unit]