Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图让我的演员类可观察(用 Observable[T] 扩展演员)。但是,有一条错误消息表明我必须实现 asJavaObserver 值,但可观察特征中没有 asJavaObserver。
你不是在混合两种不同的编程范式吗?Actor 仅通过消息进行通信。因此,如果有人对演员的状态变化感兴趣,它必须收到来自演员的消息。
可观察的东西适用于其他不使用 Actor 模型的 OO 程序。