Different Scala Actor Implementations Overview

前端 未结 5 1149
无人及你
无人及你 2020-12-12 12:14

I\'m trying to find the \'right\' actor implementation. I realized there is a bunch of them and it\'s a bit confusing to pick one. Personally I\'m especially interested in r

5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-12 12:49

    I realized that akka enforces exhaustive matches. So even if technically receive expects a partial function, the function must not be partial. This means you have to handle every message immediately.

提交回复
热议问题