From 424dd16fdc5f6ca0e5c587436b89ef95321ac9f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A2=A6=E5=A2=83=E8=BF=B7=E7=A6=BB?= <568845948@qq.com> Date: Tue, 12 Nov 2019 22:40:33 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9Eakka-actor=E6=80=BB=E7=BB=93?= =?UTF-8?q?=20fix=EF=BC=8C=E6=97=B6=E9=97=B4=EF=BC=9A2019-11-12=2022:40:33?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...46\344\271\240\346\200\273\347\273\223\347\257\207.md" | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git "a/docs/_posts/2019-11-12-Akka-Actor\345\255\246\344\271\240\346\200\273\347\273\223\347\257\207.md" "b/docs/_posts/2019-11-12-Akka-Actor\345\255\246\344\271\240\346\200\273\347\273\223\347\257\207.md" index 85abd26b..4d92b958 100644 --- "a/docs/_posts/2019-11-12-Akka-Actor\345\255\246\344\271\240\346\200\273\347\273\223\347\257\207.md" +++ "b/docs/_posts/2019-11-12-Akka-Actor\345\255\246\344\271\240\346\200\273\347\273\223\347\257\207.md" @@ -24,11 +24,11 @@ description: 本章将总结Actor模块在官方文档主要内容,初学者 - 无锁、并发(并行)的处理方式 - Actor对象的系统性 -接受器 +接受器/识别器 强调结果,只有0,1两种状态 ![](../public/image/fsm-1.png) -识别器 +变换器 强调动作条件与状态变更 ![](../public/image/fsm-2.png) @@ -55,11 +55,11 @@ description: 本章将总结Actor模块在官方文档主要内容,初学者 ActorSelection与对象性能模型,是不兼容的 -介绍关系 +介绍关系 向第三方ActorC发送消息,介绍子ActorB,并保存C的引用,可以下次使用 ![](../public/image/actor-model-1.png) -父子关系 +父子关系 创建Actor1,就获得了子Actor1引用 ![](../public/image/actor-model-2.png) -- GitLab