Hello Jonathan, you have stumbled upon a documentation page for Akka 2.0. Latest Akka right now is 2.3.5 and an introduction page to the latest version can be found here: http://doc.akka.io/docs/akka/2.3.5/intro/index-scala.html
On Fri, Aug 15, 2014 at 1:07 AM, Jonathan Urzúa <[email protected]> wrote: > Hi! > > I'm new to Akka and was reading the first tutorial that Google pointed me > to. > > http://doc.akka.io/docs/akka/2.0/intro/getting-started-first-scala.html > > I found some problems along the way and here are my solutions. > > The repo links changed, so they don't point to the correct files anymore, > those are the ones that need to be updated: > > > - > https://github.com/akka/akka/tree/master/akka-tutorials/akka-tutorial-first > to > > https://github.com/akka/akka/tree/new-docs-2.0/akka-tutorials/akka-tutorial-first > - > > https://github.com/akka/akka/blob/master/akka-tutorials/akka-tutorial-first/src/main/scala/akka/tutorial/first/scala/Pi.scala > to > > https://github.com/akka/akka/blob/new-docs-2.0/akka-tutorials/akka-tutorial-first/src/main/scala/akka/tutorial/first/scala/Pi.scala > > And I couldn't compile the code as it, so I needed to made this > modification (line 69 of the above file): > > from: > > listener ! PiApproximation(pi, duration = (System.currentTimeMillis - > start).millis) > > to: > > listener ! PiApproximation(pi, duration = Duration(System.currentTimeMillis > - start, "millis")) > > > I don't know if this is the correct place to post this kind of things, but > I wanted to help somehow. > > Best regards. > > -- > >>>>>>>>>> Read the docs: http://akka.io/docs/ > >>>>>>>>>> Check the FAQ: > http://doc.akka.io/docs/akka/current/additional/faq.html > >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user > --- > You received this message because you are subscribed to the Google Groups > "Akka User List" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/akka-user. > For more options, visit https://groups.google.com/d/optout. > -- Martynas Mickevičius Typesafe <http://typesafe.com/> – Reactive <http://www.reactivemanifesto.org/> Apps on the JVM -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>> Check the FAQ: >>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user --- You received this message because you are subscribed to the Google Groups "Akka User List" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/akka-user. For more options, visit https://groups.google.com/d/optout.
