I would like to be able to get access to the object that is being returned from spawning a future

import scala.actors.Future
import scala.actors.Futures._

class Object1(i:Int) {
    def getAValue(): Int = {i}
}

object Test {
    def main( args: Array[String] ) = {
        var tests = List[Future[Object1]]()
        for(i <- 0 until 10) {
            val test = future {
                val obj1 = new Object1(i)
                println("Processing " + i + "...")
                Thread.sleep(1000)
                println("Processed " + i)
                obj1
            }
            tests = tests ::: List(test)
        }
        val timeout = 1000 * 60 * 5  // wait up to 5 minutes
        val futureTests = awaitAll(timeout,tests: _*)

        futureTests.foreach(test => println("result: " + future()))
    }
}

The output from one run of this code is:

Processing 0...
Processing 1...
Processing 2...
Processing 3...
Processed 0
Processing 4...
Processed 1
Processing 5...
Processed 2
Processing 6...
Processed 3
Processing 7...
Processed 4
Processing 8...
Processed 6
Processing 9...
Processed 5
Processed 7
Processed 8
Processed 9
result: <function0>
result: <function0>
result: <function0>
result: <function0>
result: <function0>
result: <function0>
result: <function0>
result: <function0>
result: <function0>
result: <function0>

I've tried future().getClass(), and the output is

result: class scala.actors.FutureActor

What I'm looking to be able to access is the obj1 objects.

Thanks

Bruce

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You need to do something like this. The return of awaitAll is List[Option[Any]]. Meaning the result of each future is an Option[Any] so you need a match to get at the value and cast it to get at getAValue

    futureTests.foreach(test => test match {
        case Some(r) => println("result: " + r.asInstanceOf[Object1].getAValue)
    })

Tip of the hat to @James Iry

link|improve this answer
Perfect, thanks! – Bruce Ferguson Jan 10 '11 at 21:36
1  
Actually, case Some(r: Object1) is type safe and avoids the need for a cast. – Daniel C. Sobral Jan 12 '11 at 20:48
@Daniel - Thanks – Bruce Ferguson Jan 24 '11 at 12:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.