An asynchronous task.
An asynchronous task.
Unlike scala.concurrent.Future, this Future is not memorized by default.
var count = 0 val notMemorized = Future.delay { count += 1 } count should be(0) for { _ <- notMemorized _ = count should be(1) _ <- notMemorized _ = count should be(2) _ <- notMemorized } yield (count should be(3)),
A Future can be memorized manually by converting this Future to a scala.concurrent.Future and then converting back,
var count = 0 val notMemorized = Future.delay { count += 1 } val memorized = notMemorized.toScalaFuture.toThoughtworksFuture for { _ <- memorized _ = count should be(1) _ <- memorized _ = count should be(1) _ <- memorized } yield (count should be(1))
Parallel-tagged type of Future that needs to be executed in parallel when using an scalaz.Applicative instance
Extension methods for scala.concurrent.Future
Extension methods for Future
Extension methods for UnitContinuation
The name space that contains Future and utilities for
Future.Usage
Features of Future are provided as implicit views or type classes. To enable those features, import all members under future along with Scalaz syntax.
Author:
杨博 (Yang Bo)