How are akka actors implemented on underlying threads?

前端 未结 3 1237
悲&欢浪女
悲&欢浪女 2021-02-01 23:02

Given an execution context and a thread pool, how are akka/scala actors scheduled/implemented on that?

3条回答
  •  太阳男子
    2021-02-01 23:23

    You can find relevant information in the akka documentation which is pretty complete as far as thing goes.

    Essentially you can select/define dispatchers and assign actors to them through configuration (via files or code).

    Each dispatcher implementation is then based on some sort of executor.

提交回复
热议问题