The Artima Developer Community


Errata for Actors in Scala
Chapter 10: Akka Actors
Return to errata index.

Page 124 (PDF page 124):
Please note that

akka.actors.Channel trait does not exist in current akka versions
(available only in 1.3)
Page 126 (PDF page 126):
For the akka.actor.Channel trait removal after akk averisons 1.3,

see:
http://doc.akka.io/docs/akka/2.0/project/migration-guide-1.3.x-2.0.x.html

v1.3:

self.channel ! result
self.channel tryTell result
self.reply(result)
self.tryReply(result)
v2.0:

sender ! result
Page 133 (PDF page 133):
- Listing 10.4 uses case object Start that is not defined at Listing 10.3
- to be able to send synchronous messages you need to import
akka.pattern.ask (se
http://doc.akka.io/docs/akka/2.0/project/migration-guide-1.3.x-2.0.x.html)
Page 126 (PDF page 142):
Listing 10.1 uses _ to initialize a var, which has not been explained yet.

Page number: Book type: Paperback book PDF eBook
Book version: (Or build date. Found on back of title page.)
Your feedback:
Your name: (optional)
Your email address: (optional) (will not be published)

Copyright © 2024 Artima, Inc. All rights reserved.