Type safe Scala actors

前端 未结 3 1493
感情败类
感情败类 2021-02-05 20:18

Is there any way to specify what type of message an actor can accept and give a compile error if anything tries to send it some other type?

3条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-02-05 20:58

    Not sure whether it answers your question, but I hope it will give you some ideas. Maybe you are searching for something like Typed Actors from Akka project:

    The Typed Actors are implemented through Typed Actors. It uses AOP through AspectWerkz to turn regular POJOs into asynchronous non-blocking Actors with semantics of the Actor Model. E.g. each message dispatch is turned into a message that is put on a queue to be processed by the Typed Actor sequentially one by one.

    So you define interface and implementation and then register them as actor. Akka will create proxy for your interface that still use actor model under the hood. And you still able to use following message passing styles:

    • fire-and-forget
    • request-reply
    • request-reply-with-future

提交回复
热议问题