English 中文(简体)
Scala 2.8 Actors
原标题:

We re looking at using actors in our Scala code quite soon. We re also thinking of moving to Scala 2.8 in the next few weeks. We ve been keeping an eye on Akka but it doesn t currently support 2.8 and plans for it have slipped from the 0.7 release to 0.8

We would like distributed, supervised actors. Is there an alternative to Akka? Or does anyone know if Akka 0.8 will definitely have 2.8 support (and when it s scheduled for)? Perhaps it s possible to just use Scala actors for the time being and switch to Akka at a later stage?

Thanks,

Dave

Update: The branch Viktor mentions below can be followed here

最佳回答

I m on the Akka team and yes, we definitely want 2.8 support ready for 0.8.

Akka has an experimental 2.8 branch if you like living on the bleeding edge, it s a bit behind the current master due to the recent work to get 0.7 ready for prime time, but it s getting there.

问题回答

Akka will move to 2.8 today, latest tomorrow, as part of the 0.8 release.

/Jonas

While I m not personally involved with the Akka effort, I feel reasonably confident that Akka will be ported to Scala 2.8 as soon as Scala 2.8.0 is actually available.





相关问题
How to flatten a List of different types in Scala?

I have 4 elements:List[List[Object]] (Objects are different in each element) that I want to zip so that I can have a List[List[obj1],List[obj2],List[obj3],List[obj4]] I tried to zip them and I ...

To use or not to use Scala for new Java projects? [closed]

I m impressed with Twitter and investigating to use Scala for a new large scale web project with Hibernate and Wicket. What do you think about Scala, and should I use it instead of Java? EDIT: And, ...

Why does Scala create a ~/tmp directory when I run a script?

When I execute a Scala script from the command line, a directory named "tmp" is created in my home directory. It is always empty, so I simply deleted it without any apparent problem. Of course, when I ...

Include jar file in Scala interpreter

Is it possible to include a jar file run running the Scala interpreter? My code is working when I compile from scalac: scalac script.scala -classpath *.jar But I would like to be able to include a ...

Scala and tail recursion

There are various answers on Stack Overflow which explain the conditions under which tail recursion is possible in Scala. I understand the limitations and how and where I can take advantage of tail ...

热门标签