Actor model

来自开放百科 - 灰狐
(版本间的差异)
跳转到: 导航, 搜索
(简介)
(语言&项目)
(未显示1个用户的1个中间版本)
第30行: 第30行:
 
*[[Akka]]
 
*[[Akka]]
 
*[[Akka.NET]]
 
*[[Akka.NET]]
*[https://github.com/puniverse/pulsar pulsar] for [[Clojure]]
 
 
*[[Erlang]]
 
*[[Erlang]]
*[https://github.com/actix/actix Actix][[Rust]] [https://github.com/rust-lang/rust/issues/3573 actor library] [https://github.com/gamazeps/RobotS RobotS]
+
*[https://github.com/actix/actix Actix][[Rust]], Actix actors support for [https://github.com/actix/actix-web actix web framework]  
 +
*[https://github.com/puniverse/pulsar pulsar] for [[Clojure]]
 
*[https://github.com/ponylang/ponyc Pony] is an open-source, actor-model, capabilities-secure, high performance programming language  
 
*[https://github.com/ponylang/ponyc Pony] is an open-source, actor-model, capabilities-secure, high performance programming language  
 
*[https://github.com/jodal/pykka Pykka] is a Python implementation of the actor model
 
*[https://github.com/jodal/pykka Pykka] is a Python implementation of the actor model

2020年11月2日 (一) 15:49的版本

Wikipedia-35x35.png 您可以在Wikipedia上了解到此条目的英文信息 Actor model Thanks, Wikipedia.

参与者模型推崇的哲学是“一切皆是参与者”,这与面向对象编程的“一切皆是对象”类似,但是面向对象编程通常是顺序执行的,而参与者模型是并行执行的。

目录

简介

An actor is a container for State, Behavior, a Mailbox, Children and a Supervisor Strategy.

Actor 由状态(state)、行为(behavior)、邮箱(mailbox)三者组成。

参与者是封装状态和行为的对象,参与者仅通过交换消息进行通信,Actor 模型的本质就是消息传输。

作为一种计算实体,Actor 与原子类似。

参与者是一个运算实体,回应接受到的消息,同时并行的:

  • 发送有限数量的消息给其他参与者;
  • 创建有限数量的新参与者;
  • 指定接受到下一个消息时的行为。

以上操作不含有顺序执行的假设,因此可以并行进行。

发送者与已经发送的消息解耦,是参与者模型的根本优势。这允许进行异步通信,同时满足消息传递的控制结构。

消息接收者是通过地址区分的,有时也被称作“邮件地址”。因此参与者只能和它拥有地址的参与者通信。它可以通过接受到的信息获取地址,或者获取它创建的参与者的地址。

参与者模型的特征是,参与者内部或之间进行并行计算,参与者可以动态创建,参与者地址包含在消息中,交互只有通过直接的异步消息通信,不限制消息到达的顺序。

语言&项目

图集

链接

分享您的观点
个人工具
名字空间

变换
操作
导航
工具箱