Is it possible to run AKKA on Java 1.5? I m getting java.lang.UnsupportedClassVersionError: Bad version number in .class file
for se.scalablesolutions.akka.actor.LocalActorRef
. AKKA version is 0.9.1
There s noting said about the JVM version limitations at http://doc.akkasource.org/getting-started
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 ...