aboutsummaryrefslogtreecommitdiff
path: root/pending
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2012-11-05 16:37:34 +0100
committerJason Zaugg <jzaugg@gmail.com>2012-11-05 16:37:34 +0100
commitec1c805c533929e6f78471bc265e3933e0f34c90 (patch)
tree53d0ea898a6028c04f9bb233a1250c6047b3b3b5 /pending
parentebdc017f9506192e985ef91905c6f7e08be6d6fb (diff)
downloadscala-async-ec1c805c533929e6f78471bc265e3933e0f34c90.tar.gz
scala-async-ec1c805c533929e6f78471bc265e3933e0f34c90.tar.bz2
scala-async-ec1c805c533929e6f78471bc265e3933e0f34c90.zip
Further (re-)moving files.
Diffstat (limited to 'pending')
-rw-r--r--pending/run/fallback0/MinimalScalaTest.scala0
-rw-r--r--pending/run/fallback0/fallback0-manual.scala72
-rw-r--r--pending/run/fallback0/fallback0.scala49
3 files changed, 121 insertions, 0 deletions
diff --git a/pending/run/fallback0/MinimalScalaTest.scala b/pending/run/fallback0/MinimalScalaTest.scala
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/pending/run/fallback0/MinimalScalaTest.scala
diff --git a/pending/run/fallback0/fallback0-manual.scala b/pending/run/fallback0/fallback0-manual.scala
new file mode 100644
index 0000000..611d09d
--- /dev/null
+++ b/pending/run/fallback0/fallback0-manual.scala
@@ -0,0 +1,72 @@
+/**
+ * Copyright (C) 2012 Typesafe Inc. <http://www.typesafe.com>
+ */
+
+import language.{ reflectiveCalls, postfixOps }
+import scala.concurrent.{ Future, ExecutionContext, future, Await, Promise }
+import scala.concurrent.duration._
+import scala.async.EndTaskException
+import scala.async.Async.{ async, await, awaitCps }
+import scala.util.continuations.reset
+
+object TestManual extends App {
+
+ Fallback0ManualSpec.check()
+
+}
+
+class TestFallback0ManualClass {
+ import ExecutionContext.Implicits.global
+
+ def m1(x: Int): Future[Int] = future {
+ Thread.sleep(1000)
+ x + 2
+ }
+
+ def m2(y: Int): Future[Int] = {
+ val p = Promise[Int]()
+ future { reset {
+ val f = m1(y)
+ var z = 0
+ val res = awaitCps(f, p) + 5
+ if (res > 0) {
+ z = 2
+ } else {
+ z = 4
+ }
+ z
+ } }
+ p.future
+ }
+
+ /* that isn't even supported by current CPS plugin
+ def m3(y: Int): Future[Int] = {
+ val p = Promise[Int]()
+ future { reset {
+ val f = m1(y)
+ var z = 0
+ val res: Option[Int] = Some(5)
+ res match {
+ case None => z = 4
+ case Some(a) => z = awaitCps(f, p) - 10
+ }
+ z
+ } }
+ p.future
+ }
+ */
+}
+
+
+object Fallback0ManualSpec extends MinimalScalaTest {
+
+ "An async method" should {
+ "support await in a simple if-else expression" in {
+ val o = new TestFallback0ManualClass
+ val fut = o.m2(10)
+ val res = Await.result(fut, 2 seconds)
+ res mustBe(2)
+ }
+ }
+
+}
diff --git a/pending/run/fallback0/fallback0.scala b/pending/run/fallback0/fallback0.scala
new file mode 100644
index 0000000..75b0739
--- /dev/null
+++ b/pending/run/fallback0/fallback0.scala
@@ -0,0 +1,49 @@
+/**
+ * Copyright (C) 2012 Typesafe Inc. <http://www.typesafe.com>
+ */
+
+import language.{ reflectiveCalls, postfixOps }
+import scala.concurrent.{ Future, ExecutionContext, future, Await }
+import scala.concurrent.duration._
+import scala.async.Async.{ async, await, awaitCps }
+
+object Test extends App {
+
+ Fallback0Spec.check()
+
+}
+
+class TestFallback0Class {
+ import ExecutionContext.Implicits.global
+
+ def m1(x: Int): Future[Int] = future {
+ Thread.sleep(1000)
+ x + 2
+ }
+
+ def m2(y: Int): Future[Int] = async {
+ val f = m1(y)
+ var z = 0
+ val res = await(f) + 5
+ if (res > 0) {
+ z = 2
+ } else {
+ z = 4
+ }
+ z
+ }
+}
+
+
+object Fallback0Spec extends MinimalScalaTest {
+
+ "An async method" should {
+ "support await in a simple if-else expression" in {
+ val o = new TestFallback0Class
+ val fut = o.m2(10)
+ val res = Await.result(fut, 2 seconds)
+ res mustBe(2)
+ }
+ }
+
+}