Packages

object Future extends JvmFutureCompanion

Source
future.scala
Linear Supertypes
JvmFutureCompanion, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Future
  2. JvmFutureCompanion
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def apply[A](tryT: TryT[UnitContinuation, A]): Future[A]

    Creates a Future from the raw com.thoughtworks.tryt.covariant.TryT

    Annotations
    @inline()
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def async[A](start: ((Try[A]) ⇒ Unit) ⇒ Unit): Future[A]

    Returns a Future of an asynchronous operation.

    Returns a Future of an asynchronous operation.

    See also

    safeAsync in case of StackOverflowError.

  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  8. def delay[A](a: ⇒ A): Future[A]

    Returns a Future of a blocking operation

  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. def execute[A](a: ⇒ A)(implicit executionContext: ExecutionContext): Future[A]

    Returns a Future of a blocking operation that will run on executionContext.

  12. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def nio[A](start: (NioAttachment[A], CompletionHandler[A, NioAttachment[A]]) ⇒ Unit): Future[A]

    Returns a Future from a NIO asynchronous operation.

    Returns a Future from a NIO asynchronous operation.

    Definition Classes
    JvmFutureCompanion
    Example:
    1. Given an NIO asynchronous channel,

      import com.thoughtworks.future._
      import scalaz.syntax.all._
      import java.nio._, file._, channels._
      val channel = AsynchronousFileChannel.open(Files.createTempFile(null, null), StandardOpenOption.WRITE)

      when writing bytes into the channel,

      val bytes = ByteBuffer.wrap("Hello, World!".getBytes(scala.io.Codec.UTF8.charSet))
      val position = 0L
      val writeFuture: Future[java.lang.Integer] = Future.nio[java.lang.Integer](channel.write(bytes, position, _, _))

      then the file size should be the number of bytes written.

      writeFuture.map { numberOfBytesWritten =>
        try {
          numberOfBytesWritten.toInt should be > 0
          channel.size should be(numberOfBytesWritten.toLong)
        } finally {
          channel.close()
        }
      }.toScalaFuture
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. def now[A](a: A): Future[A]

    Returns a Future whose value is always a.

    Returns a Future whose value is always a.

    Annotations
    @inline()
  21. def safeAsync[A](run: ((Try[A]) ⇒ Trampoline[Unit]) ⇒ Trampoline[Unit]): Future[A]

    Returns a Future of an asynchronous operation like async except this method is stack-safe.

  22. def suspend[A](future: ⇒ Future[A]): Future[A]
  23. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. def unapply[A](future: Future[A]): Some[TryT[UnitContinuation, A]]

    Extracts the underlying com.thoughtworks.tryt.covariant.TryT of future

    Extracts the underlying com.thoughtworks.tryt.covariant.TryT of future

    Annotations
    @inline()
    Example:
    1. This unapply can be used in pattern matching expression.

      import com.thoughtworks.future.Future
      import com.thoughtworks.continuation.UnitContinuation
      val Future(tryT) = Future.now[Int](42)
      tryT should be(a[com.thoughtworks.tryt.covariant.TryT[UnitContinuation, _]])
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from JvmFutureCompanion

Inherited from AnyRef

Inherited from Any

Ungrouped