summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPhilipp Haller <hallerp@gmail.com>2010-04-29 09:17:24 +0000
committerPhilipp Haller <hallerp@gmail.com>2010-04-29 09:17:24 +0000
commitee5daee5d82c76d441341c8ffa81d72839e4e726 (patch)
treee63566d90d13a51c1c7448087949e71de83807c2 /src
parent151d1ec5790556fcf20d60fc48be4ab926360b59 (diff)
downloadscala-ee5daee5d82c76d441341c8ffa81d72839e4e726.tar.gz
scala-ee5daee5d82c76d441341c8ffa81d72839e4e726.tar.bz2
scala-ee5daee5d82c76d441341c8ffa81d72839e4e726.zip
Removes scala.concurrent.AsyncInvokable, which ...
Removes scala.concurrent.AsyncInvokable, which is superseded by scala.actors.CanReply. No review.
Diffstat (limited to 'src')
-rw-r--r--src/library/scala/concurrent/AsyncInvokable.scala24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/library/scala/concurrent/AsyncInvokable.scala b/src/library/scala/concurrent/AsyncInvokable.scala
deleted file mode 100644
index ac465c7fe5..0000000000
--- a/src/library/scala/concurrent/AsyncInvokable.scala
+++ /dev/null
@@ -1,24 +0,0 @@
-/* __ *\
-** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2003-2010, LAMP/EPFL **
-** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
-** /____/\___/_/ |_/____/_/ | | **
-** |/ **
-\* */
-
-// $Id$
-
-
-package scala.concurrent
-
-/** The <code>AsyncInvokable</code> trait...
- *
- * @author Philipp Haller
- */
-trait AsyncInvokable[-T, +R] {
-
- type Future[+S] <: () => S
-
- def !!(task: T): Future[R]
-
-}