object Async extends Serializable
- Alphabetic
- By Inheritance
- Async
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
- final case class MaybeLater(canceler: Canceler) extends Async[Nothing, Nothing] with Product with Serializable
- final case class Now[E, A](value: ExitResult[E, A]) extends Async[E, A] with Product with Serializable
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
val
later: Async[Nothing, Nothing]
Constructs an
Asyncthat represents an uninterruptible asynchronous action.Constructs an
Asyncthat represents an uninterruptible asynchronous action. The action should invoke the callback passed to the handler when the value is available or the action has failed.See
IO.async0for more information. -
final
def
maybeLater(canceler: Canceler): Async[Nothing, Nothing]
Constructs an
Asyncthat represents an interruptible asynchronous action.Constructs an
Asyncthat represents an interruptible asynchronous action. The action should invoke the callback passed to the handler when the value is available or the action has failed.The specified canceler, which must be idempotent, should attempt to cancel the asynchronous action to avoid wasting resources for an action whose results are no longer needed because the fiber computing them has been terminated.
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
now[E, A](result: ExitResult[E, A]): Async[E, A]
Constructs an
Asyncthat represents a synchronous return.Constructs an
Asyncthat represents a synchronous return. The handler should never invoke the callback.See
IO.async0for more information. -
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )