I have Scala IDE already setup because I used it for Coursera course "Functional Programming Principles in Scala" by Martin Odersky.
Now i want to use Akka framework in the same IDE.
Is there any Scala IDE Akka plugin available which i can import directly?
I tried to reference all the akka provided jars in a new Scala Project. I am able to run the basic akka example this way.
But when I try to work with Dispatchers
, the code is not compiling.
object TestActor {
val dispatcher = Dispatchers.newExecutorBasedEventDrivenWorkStealingDispatcher("pool")
.setCorePoolSize(100)
.setMaxPoolSize(100)
.build
}
I am trying to use Akka 2.0.2 on Scala 2.9
What is the surest way to configure and run akka 2.0.2 or 2.0.4 in Scala IDE?