码迷,mamicode.com
首页 > 其他好文 > 详细

akka note

时间:2015-02-25 18:22:53      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:

  • if invoked from an instance that is not an Actor the sender will be deadLetters actor reference by default.
  • 在akka中使用ask模式可设置超时时间,因为ask模式需等待对方的回应
implicit val timeout = Timeout(2 seconds)
(userAggregateManager ? GetUser(user)).map( _ match {
          case u: User if pass.isBcrypted(u.pass) => Some(u)
          case _ => None
})

 

akka note

标签:

原文地址:http://www.cnblogs.com/jHenry/p/4278387.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!