Initial work in moving to scala.concurrent.Await + Awaitable

This commit is contained in:
Viktor Klang 2012-06-29 16:06:26 +02:00
parent 1f6f2c1897
commit 0bf45a9403
87 changed files with 170 additions and 260 deletions

View file

@ -7,17 +7,13 @@ import language.{ postfixOps, reflectiveCalls }
import org.scalatest.{ WordSpec, BeforeAndAfterAll, Tag }
import org.scalatest.matchers.MustMatchers
import akka.actor.ActorSystem
import akka.actor.{ Actor, ActorRef, Props }
import akka.actor.{ Actor, ActorRef, Props, ActorSystem, PoisonPill, DeadLetter }
import akka.event.{ Logging, LoggingAdapter }
import scala.concurrent.util.duration._
import com.typesafe.config.Config
import com.typesafe.config.ConfigFactory
import akka.actor.PoisonPill
import akka.actor.DeadLetter
import scala.concurrent.Await
import com.typesafe.config.{ Config, ConfigFactory }
import java.util.concurrent.TimeoutException
import akka.dispatch.{ Await, MessageDispatcher }
import akka.dispatch.Dispatchers
import akka.dispatch.{ MessageDispatcher, Dispatchers }
import akka.pattern.ask
object TimingTest extends Tag("timing")