Object

com.thoughtworks.future

Future

Related Doc: package future

Permalink

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def apply[A](tryT: TryT[UnitContinuation, A]): Future[A]

    Permalink

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

    Annotations
    @inline()
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def async[A](start: ((Try[A]) ⇒ Unit) ⇒ Unit): Future[A]

    Permalink

    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

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

    Permalink

    Returns a Future of a blocking operation

  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. def execute[A](a: ⇒ A)(implicit executionContext: ExecutionContext): Future[A]

    Permalink

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

  12. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. def nio[A](start: (NioAttachment[A], CompletionHandler[A, NioAttachment[A]]) ⇒ Unit): Future[A]

    Permalink

    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

    Permalink
    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. def now[A](a: A): Future[A]

    Permalink

    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]

    Permalink

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

  22. def suspend[A](future: ⇒ Future[A]): Future[A]

    Permalink
  23. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  24. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  25. def unapply[A](future: Future[A]): Some[TryT[UnitContinuation, A]]

    Permalink

    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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from JvmFutureCompanion

Inherited from AnyRef

Inherited from Any

Ungrouped